Change Menu Font

Permalink
Hello,

I am very new to Concrete5 and I am wondering if anyone knows how to change the font for top level menu items. Ideally it would be only one of the menu items, but if they all had to change that would be ok too.

Using the Urban theme, if that matters.

Thanks in advance!

 
c5dragon replied on at Permalink Reply
c5dragon
I guess there will be something like this in the main css file.
#horizontal-nav ul li a{
    font-family: "Arial", sans-serif;
}
#horizontal-nav ul li ul li a{
    font-family: "Times", sans-serif;
}

Demo version isn't live anymore (only one showcase site) so I don't know the exact classes used.
miketmulcahy replied on at Permalink Reply
Ok thanks, I will look into this. Appreciate it!