Change nav bar font color in Pressrow

  • Unknown's avatar

    I’m using pressrow, and I’d like to change the font color of the navigation bar to color: 9da775. I also don’t like how it has the block format when you hover/scroll over it, so I’d like to remove that feature. When I scroll over it, I’d like the font to be white with an underline instead. After clicking on it, it can either be white or the original color 9da775. Here is the current code. Can anyone out here let me know how to make the appropriate changes? I have the CSS upgrade. Thanks in advance.

    #nav { width: 100%; border-top: 4px solid #222; border-bottom: 2px solid #222; float: left; }

    #nav ul { list-style: none; }

    #nav li { float: left; }

    #nav li a, #nav li a:visited { display: block; height: 3.0em; padding: 0 1.2em; line-height: 3.0em; color: #222; text-decoration: none; font-size: 1.4em; text-transform: uppercase; letter-spacing: .3em; float: left; cursor: pointer }

    #nav li a:hover { color: #fff; background: #222; text-decoration: none; }

    #nav li.current_page_item a:link, #nav li.current_page_item a:visited { background: #222; color: #fff; cursor: default; }

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

  • Unknown's avatar

    Try adding this to your CSS:

    #nav {background: #9da775;}
    
    #nav .current_page_item a {background: #9da775 !important;}
    
    #nav li a:hover {
    background: transparent;
    color: #fff;
    text-decoration: underline;
    }
  • Unknown's avatar

    @positivelyorphaned
    Aside: (Just for your information) The only people who can see the navbar on your wordpress.com blog are other wordpress.com users who must be logged in to see it.

  • Unknown's avatar

    TT,

    I think she’s referring to the menu bar (Home, Aboute, etc.). Now, if she’s referring to the admin bar, then the code I posted won’t apply.

  • Unknown's avatar

    Oh … the Admin bar I hadn’t even thought of that!
    I’ll go hang out behind a large rock now … LOL :D
    P.S. It’s good to chat with you again. ;)

  • Unknown's avatar
  • Unknown's avatar

    So sorry if I was calling it the wrong thing – I was referring to the Menu bar, Home, About, etc. YES! That works. Thank you SO much devblog. That’s exactly what I wanted! I really appreciate it.

  • The topic ‘Change nav bar font color in Pressrow’ is closed to new replies.