Change menu font wordpress website

I’m trying to change the menu font for my WordPress-site at persevere.nl.

enter image description here

Read More

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.

Related posts

1 comment

  1. 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.

Comments are closed.