• Resolved shoulderdevil

    (@shoulderdevil)


    How do I change the hover color of submenus. Right now when you mouse over the submenu it is a salmon color. I have combed through the CSS and can’t seem to find the area to change it to #805E91.

    Thanks in advance for your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter shoulderdevil

    (@shoulderdevil)

    I was able to figure this out by adding this to the custom CSS.
    .main-navigation ul ul a:hover {
    color: #805E91 !important;
    }

    Hi @shoulderdevil!

    Thanks for posting your solution!

    You should be able to do it without the !imporant part, like this:

    .main-navigation ul ul a:hover {
    	color: #805E91;	
    }

    Generally, it’s best to avoid using !important in CSS whenever possible – it’s usually not needed (like here) and it can make it more difficult to troubleshoot your CSS down the road, since !important acts as an override. Generally it’s best to write more specific CSS if you need to, rather than rely on !important to force the code to work.

    If the above CSS doesn’t work without !important let me know where exactly you’re adding it and I can try to see what’s getting in the way (a link to an effected page would also help) 🙂

    Thread Starter shoulderdevil

    (@shoulderdevil)

    I have another issue that I am hoping that you can help with. The sidebar has widgets Recent posts, I can’t find the area where I can change the font and the color of the links there. Can you help?

    This will be another CSS task.

    Did you want to change the color of all of the text in the sidebar? Or just this particular widget?

    If you’re aiming for specific widget, can you post a link to your site so I can help you identify it? 🙂

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

The topic ‘Submenu Colors Sela’ is closed to new replies.