When I hover over a fullwidth button the button color changes to almost white.
I have found a quick CSS code to change the font color of the font, but not the button color itself on hover. How can I change that?
Hi Frank!
You don’t need CSS to change that – http://screencast.com/t/zwU4CZmWBJ
Best regards,
Josue
I think I’m having the same issue — my full-width buttons change to white on rollover / hover — http://879.890.myftpupload.com/programs/women-supporting-women/ — and that screencast is a broken link.
Please advise. Thanks!
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#top .avia-button-fullwidth:hover {
color: #333!important;
}
Best regards,
Yigit
Thanks, but that just changes the font color. I’d like to to act just like the other buttons, where the font color stays the same and the background lightens just a little. In other words, how can I keep the font color the same, but just have the background lighten a little (not turn to white)?
Hey!
Use this code instead:
.avia-button-fullwidth:hover {
opacity: 0.9 !important;
}
.avia-button-fullwidth .avia_button_background {
display: none !important;
}
Best regards,
Josue
Perfect! Thank you so much!
You are welcome, always glad to help :)
Regards,
Josue
Hello,
how van i change the color of all fullwidth buttons in the quick CSS ?
thnxs in advance.
Hey!
Try adding this code to the Quick CSS:
#top .avia-button.avia-button-fullwidth {
background-color: red !important;
}
#top .avia_button_background.avia-button-fullwidth {
background-color: green !important;
}
Red is idle, green is hover.
Cheers!
Josue