Hi,
In a another thread I asked about hovering over icons. I tried to implement per your response, which made sense to me.
Enable the custom css class: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Use “icon-custom-hover” on the Custom CSS Class field for example. Add this on Quick CSS:
.icon-custom-hover span:hover {
color: red;
}
It works, but if I include the border or a link, which I want, it doesn’t work. How do I get it to work with the border/link option?
Thanks.
Hey Pointbreakd!
which kind of border/link do you mean? Please post a link to your website and show us what you want to achieve.
Cheers!
Andy
Hey!
Try adding this to your custom CSS.
.av-icon-char:hover { color: red !important; border-color: red !important; }
Cheers!
Elliott
That works! But how do I do it for each different icon?
Hi!
Use this instead:
.icon-custom-hover:hover a {
color: blue !important;
}
.main_color .icon-custom-hover:hover a.av-icon-char {
border-color: black;
}
Cheers!
Ismael
You guys are great! One more thing, then I’m done (still related to hover). What custom CSS do I add to stop the sonar animation (the white ring expanding)?
Hi!
Please add following code to Quick CSS
.av_font_icon.av-icon-style-border .av-icon-char:after {
display: none;
}
Regards,
Yigit
Perfect. Thanks so much for your help.