• I am attempting to change the menu text color of my Twenty Twelve theme to Red, and for the life of me I cannot figure out how to do this. I have tried every suggestion on these forums for snippets of code. Nothing works. I have tried setting up and editing a child theme’s CSS, I’ve tried editing the CSS of the theme itself (I know, not recommended – I Have a backup want to use a child theme once I figure this out).

    I see this the most, but this does not do anything. . .

    .main-navigation li a:hover {
    color: #FF0000;
    }
    .main-navigation li a {
    color: #FFFFFF;
    }

    Can anybody tell me what I’m missing/screwing up?!
    Thanks.

    http://www.marcblitzstein.org

Viewing 2 replies - 1 through 2 (of 2 total)
  • .main-navigation li a { color: red; }

    will work but you need to make sure it’s in your child theme and is not being overridden by an over specified style (or media query), if so you can fix this by giving more qualification to the selector:

    .site-header .main-navigation li a { color: red; }

    I use the plugin Styles, then Styles Tewnty twelve, all free. No code needed

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘twenty twelve menu text color’ is closed to new replies.