hello, my font won’t change the style in text or headline. Is this because i added this CSS?
@media only screen and (max-width: 500px) {.entry-title {font-size: 150%;}}
I can only the change color and the font size.
Thank you
hello, my font won’t change the style in text or headline. Is this because i added this CSS?
@media only screen and (max-width: 500px) {.entry-title {font-size: 150%;}}
I can only the change color and the font size.
Thank you
Hi,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with the URL of the page where we can see the issue. This is to ensure that we can provide you with a tailored answer to your situation.
Thank you.
Hi There,
Please try :
@media (max-width: 500px) {
h1.entry-title {
font-size: 150%;
}
}
Hope it helps
I put the code in but it didn’t work only the description of the post will change font style not the content in the body of my post. si headings won’t change or my content will not change either. I want to change the font styles on both. Thank you
Hi There,
That specific CSS is working. Those suggested CSS will change font size for h1 header on 500px screen size and below. See how it works here on your site: https://screencast-o-matic.com/watch/cFno01osVA
Now, if you want to reduce font size of body content too, update that CSS to this:
@media (max-width: 500px) {
h1.entry-title {
font-size: 150%;
}
.entry-content { /*For body content. Adjust 100% accordingly*/
font-size: 100%;
}
}
In case this doesn’t achieve what you want, it would be better to give us more details like specific link and section of the page where it is supposed to work and how it should be. That will helps be specific on our recommendation. Thank you.
Thank you. my host provider was the problem All fixed!
Hi There,
Glad to know font-style works on your site now, would you mind sharing what was the issue, and what your host provider did to fix it? Your thread will help others who might find this looking for a solution to the same problem.
Thanks,
My WordPress was frequently crashing. So what the provider did was added more memory to it? as soon as they did, the page was refreshing correct and the fonts responded they way it was meant
I hope that helps.
Glad it’s okay now and thanks for sharing 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.