Hi There – I’d like the text on my layered sliders to stay the same size when it’s in mobile view. Currently the text on the slider reduces size so it’s so small that you can’t read it. Is there a way to do this in the slider settings or is this a CSS issue?
Thanks
Hi!
Please edit the slides then go to each layer’s Attribute panel. Add a unique css class selector for the title and captions. Add “layer-slider-title” for the title and “layer-slider-caption” for the captions. Use media queries on Quick CSS to specify the font size on mobile devices:
@media only screen and (max-width: 1300px) {
.layer-slider-caption {
font-size: 18px !important;
line-height: 18px !important;
}
layer-slider-title {
font-size: 25px !important;
line-height: 25px !important;
}
}
Regards,
Ismael