I'm encountering a strange issue with my website. I have been working on this website
and am looking to change the color of the main menu hover links from white to orange. Here is the CSS related to that section:
.darkheader .navigation > ul > li.menu-item:hover > a.menu-link,
.darkheader .navigation > ul > li.menu-item.menu-item-has-children:hover > a.menu-link
{
color: #fff !important;
I attempted to change the hover color to orange by adding the following CSS:
.darkheader .navigation > ul > li.menu-item:hover > a.menu-link,
.darkheader .navigation > ul > li.menu-item.menu-item-has-children:hover > a.menu-link
{
color: #f06623 !important;
However, even after reloading the page, the hover color remains white. I am puzzled as to why the white color is not being overridden by the orange color. I am aware that the last CSS rule with the !important declaration takes precedence over previous ones. I have searched through the theme CSS files but couldn't locate that particular line of CSS. Can someone assist me in changing the hover color to orange?