Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I need to change my nav bar font and I can't figure out how. I've tried messing with the CSS but nothing has worked. I also want to make all the letters uppercase. http://www.kristenkellerreeves.com

share|improve this question
Welcome to SE Kristen, I have answered to your question but please, next time, give some more thought to your question, and also show us what you tried! – Sunyatasattva Mar 11 at 1:06

closed as off topic by s_ha_dum, Wyck, brasofilo, kaiser, toscho Mar 11 at 14:35

Questions on WordPress Answers are expected to relate to WordPress within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Not really a Wordpress question. In your case you would just need this:

.nav li a {
    font-family: "One font", "Another font", fallback-font-type;
    text-transform: uppercase;
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.