HI support,
I have a full-width button with a colour change on hover however I notice when the mouse cursor moves over text on the button the hover colour disappears?
The button can be found within a tabbed section under ‘vehicles’ on the on the home page.
I presently have the following Quick CSS for the button states.
/* Button background */
.avia-button {
background: #154161 !important;
}
/* Background on hover */
.avia-button:hover {
background-color: #257fc7 !important;
}
Many thanks
John
Hey John,
Thank you for the inquiry.
Try to apply the hover state in the avia-button-wrap container instead of the button. Or replace the css code with the following.
/* Background on hover */
.avia-button-wrap:hover .avia-button {
background-color: #257fc7 !important;
}
Best regards,
Ismael
Thanks Ismael,
I ended up using your CSS code which has done the trick.
Many thanks
John