• Hi.

    I want to change the color from black to white on my drop-down menu in the navigation. Also the font color from white to black. But i can not find this i in the style.css. Can anyone tell me how i can change this?

Viewing 1 replies (of 1 total)
  • In your Child Theme or CSS Editor Plugin try this code:

    #pre-header {
        background: none repeat scroll 0% 0% #fff;
    }
    
    #pre-header .header-links li a {
      color: #000;
    }
    
    #pre-header .header-links .menu-hover > a, #pre-header .header-links .sub-menu a span,
    #pre-header .header-links > ul > li > a:hover {
    	color: #000;
    }
    
    .main-navigation .sub-menu a {
        background: #fff;
    }
    
    .main-navigation ul ul :hover > a {
      color: #000;
    }

    *Note
    If your theme has a custom CSS Editor in it, you can also paste the code in there.

    Never edit core CSS or PHP files, they’ll be deleted when the theme is updated.

Viewing 1 replies (of 1 total)
  • The topic ‘How to change color on drop-down menu’ is closed to new replies.