How Do I Change the Font from All Caps in Headers in Imogen?

QuestionsCategory: WordPress ThemesHow Do I Change the Font from All Caps in Headers in Imogen?
boodlesmom asked 7 years ago

My blog was recently hacked and I wound up having to remove my blog, reinstall WordPress and start over.  There are have been many changes since I started my blog.  One thing I noticed is that now my headers are all caps and I don’t remember them being that way before.  How do I change them?  On the theme options page where you pick out your fonts, I’ve added some css that others have used and nothing changes.  I am not css or coding fluent.  Thanks in advance for the help!

2 Answers
Emma answered 7 years ago

Did you discover the answer to this?  I wouldn’t mind knowing too!

Themebullet Staff answered 7 years ago

You can customize it via CSS by adding following code either to your style.css or Custom CSS box in the Theme Options.

.sf-menu > li > a {
text-transform: none;
}

This will override theme styling.