Hi,
I like the size of my text on the desktop version but on mobile it is too big. I would like the font to be smaller & fit across the screen (without wrapping to next line).
PW: KHaus2023
Thank you!
Kaity
Hi,
I like the size of my text on the desktop version but on mobile it is too big. I would like the font to be smaller & fit across the screen (without wrapping to next line).
PW: KHaus2023
Thank you!
Kaity
Add this code in Custom CSS of that section to solve this issue.
@media (max-width: 749px) {
h2 {
font-size: 28px !important;
padding-bottom: 12px !important;
}
}
Amazing, this worked! Thank you!
Very welcome!