• Resolved jonnymb74

    (@jonnymb74)


    Need to change the colour of the text including the text hover colour within the main menu buttons which appear at the top of my page (and all other pages).

    The colours are currently black then white. I simply want to swap them round, how do I do this?

    Many thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • change your css to something like…

    #menu li a
    {
    color:#fff;
    }
    
    #menu li a:hover
    {
    color:#000;
    }

    you may need to alter the div name or elements, but simple css alteration will work

    Thread Starter jonnymb74

    (@jonnymb74)

    That did it, great, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change colour/hover colour of menu button text?’ is closed to new replies.