• I have a custom menu at the top of my blog which links to the home page, when you hover over it, it turns black. I want it to stay red.

    I have this in my css….

    #menu-homemenu a:hover {colour: red; text-decoration: underline; font-weight: bold; }

    what am i doing wrong?

Viewing 5 replies - 1 through 5 (of 5 total)
  • colour is spelled wrong, css uses the American spelling, drop the ‘u’, so it will be color

    Thread Starter productlover

    (@productlover)

    Thanks harmck. I dropped the ‘u’ and its still going black….hmmm??

    Do you have a link? Because it may be because of an CSS inheritance problem that is overwriting your site.

    When you hover over it, you want the hover color to be red?

    Try adding #menu-homemenu a:visited so it will be as below:

    #menu-homemenu a:hover, #menu-homemenu a:visited {color: red; text-decoration: underline; font-weight: bold; }
    Thread Starter productlover

    (@productlover)

    tried that, didn’t help! boo!

    productlove.net

    Thanks!!

    productlover, is your issue resolved? just took a look at your site, and it seems the colour is now red.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘custom menu "home" link – colour problem’ is closed to new replies.