Hi,
I was trying to change the color of the line above the menu items in Integrity. I have found several topics on this and found some custom css code that partially worked, however, the hover color does not work. I have found the following code that changed the color of the line in it’s normal state (so basically only the “.x-navbar .desktop .x-nav > li > a” line works, everything else is being ignored by the theme.
I am trying to ONLY change the hover color of the line, everything else should remain white, as the site is white and therefore it will be invisible.
This is the code I used (the on hover section unfortunately changes nothing):
.x-navbar .desktop .x-nav > li > a,
.x-navbar .desktop .x-nav > .x-active > a{
box-shadow: inset 0 4px 0 0 #ffffff;
margin-right: 3px; /* added this to create gaps between the lines */
}
/* On Hover */
.x-navbar .desktop .x-nav > li > a:hover,
.x-navbar .desktop .x-nav > .x-active > a,
.x-navbar .desktop .x-nav > .current-menu-item > a {
box-shadow: inset 0 4px 0 0 #f04b26;
}
Thanks for the help
Phil