I have two menu items that are using Button Style (Colored) and Button Style (Bordered).
I would like the Request Quote button to be colored red (it is currently grey)
The Tech Support button is currently outlined in Red, which is good, but when hovering over the button, it turns white or disappears altogether. I would like to fix this so that the button remains visible when the cursor passes over it.
Thanks.
Hi lzharvey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#menu-item-1345 .avia-menu-text {
background-color: red!important;
}
li#menu-item-1346 a:hover .avia-menu-text {
color: #d90e1b!important;
border-color: #d90e1b;
}
Best regards,
Yigit
That fixed it. Thank you Yigit!