We now how a separate slider for mobile devices, which we’ve set for 700px in height instead of 500px for the non-responsive slider. However, the H1 and H2 text in the responsive slider is much smaller than the H1 text for other items on the page. Is there a way to keep the H1 and H2 slider text from shrinking for mobile devices?
Hi!
Please add following code to Quick CSS and adjust as needed
@media only screen and (max-width: 768px) {
h1.ls-l { font-size: 14px!important; }
h2.ls-l { font-size: 12px !important; }}
Regards,
Yigit
That works great! Thanks!