Hi
I would like to turn off the hover on av-catalogue-container. I take this line to the Custom Css Class, but it’s not work.
Where is the hover…?
.nohover {
background-color: #ffffff !important;
}
Thank you!
Best Regards,
Peter
Hi Peter!
Please add following code to Quick CSS
.main_color .av-catalogue-list li:hover {
background: transparent;
}
Best regards,
Yigit
Hi Yigit,
Do you know a code what i can use by Custom CSS Class? Because I dont want to use transparent background every time.
Best regards,
Peter
Hey!
If custom CSS class is not enabled on your installation, please firstly refer to this post – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and enable it. If enabled, please edit your element and give it a class and then change the code to following one
.your-custom-class li:hover {
background: transparent !important;
}
Cheers!
Yigit
OMG :) yes, it’s work! Thank you!