If you open the private link below, and reduce the browser dimension to mobile size, the fullscreen slider font become really small
I found in a different thread that using this could help
.avia-caption-title { text-transform: none !important; }
@media only screen and (max-width: 767px) {
.responsive #top .slideshow_caption .avia-caption-content {
font-size: 50px!important;
}
But it only made the text bigger, not the font
How can i scale the font properly for mobile? why is special coding required for it? cannot be done by default?
Hey kilimats,
Thank you for reaching us out.
Did you try changing the font size from the element “Screen option”?
If that don’t work for you Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
/* CSS - Full Screen Slider caption */
@media only screen and (max-width: 767px) and (min-width: 480px) {
.responsive #top .slideshow_caption h2 {
font-size: 20px !important;
}}
/* End CSS */
Best regards,
Vinay