• Resolved anpu

    (@anpu)


    Hi,

    I am having a problem with the menu text that is located in the Suckerfish navigation.

    When I installed suckerfish and configured it; it was set to have a black background and white text, and on hover it was going to be green background with white text. I made that happen easily but about 3 weeks later, all of a sudden it stopped working, meaning that something happened to the color scheme I configured. In Safari it doesn’t show the text except the “Home” button and in FF it shows all except one button.

    The link is: rainforestsofnewyork.org

    Anyone has an idea to fix this?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi

    These lines in the style.css stylesheet are overriding your desired colors

    a:link, a:visited, a:active {style.css (line 136)
    color:#000000;
    }

    here is the CSS you are trying to apply:

    .sf-menu a {style.css (line 47)
    background-color:#000000;
    color:#FFFFFF;
    padding:9px 19px;
    }

    add this after it. not positive but i think it will give the result you want

    .sf-menu a:link, .sf-menu a:visited, .sf-menu a:active {
      color:#FFFFFF;
    }

    Thread Starter anpu

    (@anpu)

    Aah, it worked. Thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Suckerfish Text Display Issue’ is closed to new replies.