This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Change button color on hover

#25297
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Thank you very much for your kind words!

Well, there is no option for that, but you might be able to replicate that via custom CSS, something like this:

.asp_m .promagnifier:hover * {
    background-image: none !important;
    background: black !important;
    color: #ffca07 !important;
}

/* Yellow icon */
.asp_m .promagnifier:hover .innericon {
    background-image: url("https://point-artisans-nantes.com/wp-content/uploads/2019/12/artisan-nantes-yellow.png") !important;
}

In the second CSS section, you can upload a yellow version of the icon to the media library, and replace the URL in the code to that yellow icon URL – and then the icon color will also change.