• I am building my WordPress site (https://www.edsstudios.com). When you click on the main navigation links, the words briefly turn blue. Could someone please tell me where in the .css file I change this? I can’t seem to find it. Thanks in advance for the help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • There’s a setting in style.css, line 4293, starting with:

    #navbar .menu li:hover, #navbar .menu li.sfHover, #navbar .menu a:focus, #navbar .menu a:hover, #navbar .menu a:active

    You’ll find background-color is set to #6699cc (the blue); try removing that background-color property.

    Thread Starter eseel

    (@eseel)

    I changed the color in the line you suggested but it did not change the issue. Any thoughts?

    A reference to the same blue color also appears here:

    #navbar .menu li:hover, #navbar .menu li.sfHover, #navbar .menu a:focus, #navbar .menu a:hover, #navbar .menu a:active {
        background: url("images/nav_hover.png") repeat-x scroll 0 0 #6699CC;
        color: #FFFFFF;
        outline: 0 none;
        text-shadow: 0.2px 0.2px #0099CC;
    }

    Try removing the #6699cc part of that background property?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CSS Question’ is closed to new replies.