menu color on hemingway rewritten

  • Unknown's avatar

    Hi I am working on a new blog and was wondering how i might change the color of the menu bar? I was thinking of changing it to a dark grey or a white if i can then get the font for the menu titles to be dark

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

  • Unknown's avatar

    Here is an example that will change the Hemingway Rewritten menu to a white background with dark gray text on hover:

    .main-navigation {
    	background: #fff;
    }
    .main-navigation li:before {
    	color: #444;
    }
    .main-navigation ul ul li {
    	background: #fff;
    }
    .main-navigation a,
    .main-navigation a:visited {
    	color: #777;
    }
    .main-navigation li:hover > a {
    	color: #444;
    }
    .main-navigation .current_page_item a,
    .main-navigation .current-menu-item a {
    	color: #444;
    }

    You can adjust the color codes as needed.

  • The topic ‘menu color on hemingway rewritten’ is closed to new replies.