Archived topic
The colos in the MENU (works on an anchor) don't change
3 replies · Started by Robert on January 14, 2023
Hi
I set on my page, in the MENU, that if I move the cursor over a button: it change the colors to a white background;
- like on the "O FIRMIE" - which direct to an new sub page.
The next 3 button: OFERTA, POZNAJ NAS, KONTAKT,
don't direct to a news subpage but they work on a anchor, and if I move over it: nothing changes
I just wanna ask if its passible to make any setting so that if a button on the MENU
works with an anchor - he will change the color like a button who direct to a new subpage ?
Kr
Robert
Hi there,
menu items that are anchored to that page use the Current menu item styles which block the hover colors.
Try adding this CSS to fix that:
.main-navigation .main-nav ul li[class*="current-menu-"]:hover > a {
color: #1B1E51;
background-color: #ffffff;
}
THX!
You're welcome