Change Font size and colour of Custom Menu Titles
-
How do I change the font size, style and colour of the custom menu titles? I have bought the upgrade and I’m using the Pilcrow Theme. Thank you
The blog I need help with is: (visible only to logged in users)
-
donscrooby
put this in your CSS:#nav a {
color: put color here; use the hex code like this: #D123F12;
font-size: put em’s here like this for 150% bigger: 1.5em;
font-family: put font family name plus at least one fall back here like this: helvetica, san-serif;
}so your final CSS could look like this:
#nav a {
color: #D123F12;
font-size: 1.5em;
font-family: helvetica, san-serif;
}Google “web colors” to find colors with corresponding hex codes
Cheers!
-
-
Thanks so much for your help. I really appreciate it. Just one other thing if you don’t mind; To make the font bold, what do I add?
- The topic ‘Change Font size and colour of Custom Menu Titles’ is closed to new replies.