Hi,
I am trying to change the size of the font of the primary slogan when displayed on mobile devices. I have placed the following code in the CSS:
@media only screen and (max-width: 767px) { #site-description { font-size: 12px; } .slogan-wrap .slogan { font-size: 10px; font-weight: normal; } }
The line “font-weight: normal;” works fine. But the font size does not change when in mobile view. Any ideas?
Thanks,
Josh.
Hi Josh,
Please add below custom css code to change the size of the font of the primary slogan on mobile devices.
@media only screen and (max-width: 767px) .slogan-wrap .slogan { font-size: 17px !important; }
Thank you!
Hi, That did it!
Thanks for your help.
Welcome anytime Josh.