Hello,
I have links in wordress menu with an anchor and there is a class who is automatically added to anchor who prevents me to change color of the menu font and his left border.
i tried :
.x-anchor[class*=“active”] .x-anchor-text-primary {
color:rgba(250,250,250,0.7) !important;
border:rgba(250,250,250,0.7) !important;
}
.x-anchor[class*=“active”] .x-anchor-text-primary:hover {
color:#fbcc00 !important;
border:#fbcc00 !important;
}
but it only affect the text and not the whole button, also the left border is not affected.
How to change the font and border color of normal and hover states of anchor ?
Or is it possible to remove the x-anchor class ?