And on slider setting no check boxes are checked for hiding on responsive.
URL in private
Hey jb84,
It looks like it’s being hidden by the padding you have applying to the column, 200 pixels on each side. Please try copying the element, and hide the current one for mobile. Then remove the padding from the new element, and hide it for all screens, except mobile.
Best regards,
Rikard
Thanks
but unfortunatly, my slider is on a column and there is no setting in the column element to set ” hide it for all screens, except mobile.”
Hi,
Select to hide the current one on mobile, then add an ID to the copy. Then use CSS like this:
@media only screen and (min-width: 768px) {
#your-id {
display: none;
}
}
Best regards,
Rikard
Hi,
You could also change your layout. Instead of using a 1/1 element with a lot of padding, you can use empty 1/5 elements on both sides, and add your content in a 3/5 element instead.
Best regards,
Rikard
THK Rikard
With CSS all is perfect!
Hi,
Great, I’m glad that you got it working. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
Rikard
close
Hi,
Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard