Reputation: 45
I'm trying to change the menu font for my Wordpress-site at persevere.nl.
I'm stuck at the style.css, while I'm pretty sure that's where the action is. Because I'm pretty new at this I would really appreciate it is someone could show me how its done.
Upvotes: 1
Views: 1027
Reputation: 6412
You just need to target that CSS then.
#mainnav ul li a{
font-family:"Droid Sans", Arial, Helvetica, sans-serif; //replace with what you want it to be
}
You can add it (the indented line) to the style.css
where that code you circled is.
Upvotes: 2