Hover text colour not working

Support Area Forums Moonrise Hover text colour not working

Viewing 3 posts - 1 through 3 (of 3 total)
URL to the page in question: http://dev.thalassaseafood.co.uk.gridhosted.co.uk/
  • Author
    Posts
  • #29740
    RecipeSocial
    Participant

    Hi Bill,

    I’ve noticed the hover text colour change doesn’t work on the main menu or the top right social icons for some reason. (when viewing with Firefox Mac). The social icons partly work with Safari, but only two!

    I’m guessing there’s a plugin conflict causing this?

    Any ideas as to what might be causing this issue?

    Thanks,
    Christian.

    #29754
    Bill Robbins
    Moderator

    With a one page site, the “current menu item” is applied by WordPress to each navigation menu item. The theme uses the same color for the hover state as the current state. Because of that you may need to add something like this to your Custom CSS to change the color. Use this instead of the color picker in the theme options/customizer.

    
    #navigation li.current-menu-item a  {
    	color: #000000;
    }
    
    #navigation li.current-menu-item a:hover  {
    	color: #2685b0;
    }
    

    The top style there would set the normal state of your navigation menu items to black. The second one is the hover which would be blue here. Set those colors to what you’d like them to be and add them to the Custom CSS.

    Bill

    #29764
    RecipeSocial
    Participant

    Hi Bill,

    Thanks for the code, much appreciated. The menu did used to change as it does now with the above code. I’m not sure why it stopped working? A plugin conflict maybe?

    Anyway, it’s working fine now, thanks.

    Christian.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Hover text colour not working’ is closed to new replies.