Hi there,
Is there a way to control the way certain elements appear in the Layer Slider when it’s in mobile view? For instance, my titles on the layer slider are really quite small when it resizes to fit the screen size. The titles are jpg image files.
Thanks!
Hi!
Edit the image button layer then add a custom id or class attribute in the Attributes panel. Use “custom-button” in the Class field for example. Add this to the Quick CSS field to modify the button on mobile devices:
@media only screen and (min-width: 768px) {
.custom-button {
width: 186px !important;
height: 22px !important;
bottom: 50px !important;
}}
Regards,
Ismael
Hi, I inserted the custom css but part of the button/text is hidden.