Hi!
I have a child theme and made fontchanges. How do I change the fontsize of h1 to be smaller in mobileview? I wish to have two sizes, one for normal view and one for mobile view.
Hi info39,
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
@media only screen and (max-width: 767px)
#content h1{
font-size: 17px;
}
Hope this may help you. Set you font size you want to any px.