Changing the menu colours

  • Unknown's avatar

    hi there,
    I was trying to change the colours of the menu to match my other website (which I made), but I can’t find what their names are in the original css) I would like it to look like this: http://www.feldenkraisinlondon.com rather than the white on black, which I find visually unattractive…
    Any help would be appreciated.
    Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Hi there!

    You can do this with a little bit of custom CSS code.

    Go into your site’s admin Dashboard and select Customize → CSS. In the CSS textbox on the left, add the following code:

    #access {
        background: white;
    }
    
    #access li a {
        color: black;
    }
    
    #access li a:hover {
        background: white;
        color: #aa0000;
    }
    

    You should see the changes right away, but this is just a preview for you, so you can experiment a little if you like. Once you’re happy with it, select “Publish” from the top, and your changes will be applied to your site.

  • The topic ‘Changing the menu colours’ is closed to new replies.