Tagged: content, mobile, responsive
How do I get to a setting to change the size of the font and image on mobile?
I have a color area with a background image. Inside the color area is a heading and text underneath. Its pretty nice looking and large on a desktop but on the phone the text is still really huge and goes off the screen.
Hey jordanvidrine!
There are CSS rules, that can be used for different size screens.
Please take a look here
and use them for the selectors you need.
Let us know if we can do anything else for you
Cheers!
Basilis
Hey jordanvidrine,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width: 767px) {
.av-inherit-size .av-special-heading-tag {
font-size:30px;
}
.av-subheading p{
font-size:16px;
}
}
Best regards,
Vinay