Change Font size and colour of Custom Menu Titles

  • Unknown's avatar

    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)

  • Unknown's avatar

    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!

  • Unknown's avatar

    correct hex code: these codes have 6 digits after the # not 7 like I put

  • Unknown's avatar

    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.