Mouse hover button on the slider- becomes transparent
How can I disable this option and change it to be a different color and not transparent?
Screenshot: http://prntscr.com/7id5n3
Website url: https://www.ibamarkets.com/
Thanks!!!!
Hi Lev!
Add this to your custom CSS.
.avia-slideshow-button:hover {
opacity: 1 !important;
background: red !important;
}
Cheers!
Elliott
Thanks Elliott..
Its work!!!
You know maybe why I can not change the text color button?
I put this code:
.avia-slideshow-button:hover {
opacity: 1 !important;
background: #ffffff !important;
color: #62bc46 !important;
}
Thanks..
Hey!
The code you are using will only affect the hover state, I’m not sure what state you are trying to edit?
You can try the following instead:
#top .avia-button.avia-color-light {
background: #ffffff !important;
color: #62bc46 !important;
}
Regards,
Rikard
perfect!!!!
I just add :hover
and I get exactly the result I wanted!
Thank you
#top .avia-button.avia-color-light:hover {
background: #ffffff !important;
color: #62bc46 !important;
}