• Can anyone please help me? I’d like to change the color of the menu options when you hover – right now it’s red, and when you mouse over the dropdown menus it turns a darker red. I don’t want red, but cannot figure out where to change this!

    Also – I’d like to have the main header image click-able, so that it links back to the main homepage when you click it. Does anyone know where I can change this?

    Thank you!

    site is: http://www.pandamakeup.co.uk

Viewing 2 replies - 1 through 2 (of 2 total)
  • I wanted black and white, and ended up adding this to my “Edit CSS” Section.

    .main-navigation ul li:hover > ul {
    	display: block;
    	background: #000000;
    }
    
    .main-navigation li:hover > a {
    	background: #000000;
    	color: #fff;
    }
    
    .main-navigation ul ul a:hover {
    	background: #fff;
    	color: #000000;
    }

    Hi Alisamoco
    I would add to the Jim´s note that the code should be put into style.css file in your child theme folder.
    It is safer to have child theme.
    Cheers
    Tahoe Rock

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

The topic ‘Changing menu hover color’ is closed to new replies.