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

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!

boodlesmom
asked8 years ago
Views 1023
1 Answer

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.

Avatar photoThemebullet Staff - 8 years ago

This question has been marked as resolved. The solution has been found and no further answers are needed.