Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #166506
    carolinec
    Participant

    Hi

    I have asked this question recently but two participants gave me opposite replies, so I am a bit confused. I see from the forums that Tikaram has previously answered my question with a very short piece of CSS code, when this question was asked.

    I want to update the red colour which appears on the Main Menu which I cannot seem to customise

    Site URL http://caclearning.site/

    The home in the menu appears as red when you access the site and the other navigation e.g biography appear as red when you hover over them. I want them to be another colour. The white standard (no hover is fine) and then to change to a colour of my choice when they are hovered over.

    Kind regards
    Caroline

    #166561
    tikaram
    Keymaster

    @carolinec : To change the hover color for navigation.
    Login to your WordPress admin panel
    Go to Appearance => Customize => Additional css and add the following css

    .navigation-classic .main-navigation ul :hover > a {
    	color:#color-code !important;
    }

    Note: You can change the color-code to the color of your choice. You can search for color-code of your desired choice and add the css.
    If you would like to change to green color the css will be as follows

    .navigation-classic .main-navigation ul :hover > a {
    	color:#008000 !important;
    }

    Let me know if this helps you out.

    Regards,
    Tikaram

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Menu Colour’ is closed to new replies.