Problem editing font with CSS
- The topic ‘Problem editing font with CSS’ is closed to new replies.
Need help? Check out our Support site, then
Hello,
I cannot seem to customize any font on our website using CSS except for the minor changes I can make under “customizing fonts”. I would like the titles under each portfolio thumbnail to be larger and darker, and the page titles to be smaller than the site title. Is there something that is blocking me from making these changes, or am I using the wrong code? This is what I’ve tried:
h1.entry-title {
font-size: 16px;
}
h3.portfolio-title {
font-size: 15px;
}
Thank you!
The blog I need help with is: (visible only to logged in users)
Hi,
Can you try this?
figure h3 { font-size: 1.5rem; }
h1.entry-title { font-size: 2rem; }
Thanks,
Chandra
Hi Chandra,
That code did not seem to make any difference….any other suggestions?
Appreciate your help!
I cannot seem to access your site which would let me find out the exact css. can you try this and see if it changes anything?
figure h3 { font-size: 1.5rem !important; }
h1.entry-title { font-size: 2rem !important; }
You can also try px for the size. Thanks.