HI,
on my page below I´ve tried to change hover color (grenn->orange) for icon & text using this custom css (as recommended in another post):
.avia-icon-list .iconlist_icon:hover {
color:#d45948;
}
But there is no hover effect.
what can I do?
Thx a lot & best regards, Tilman
Hey Tilman!
Pleaseadd following code to Quick CSS
a.iconlist_icon:hover {
color: #d45948!important;
}
Regards,
Yigit
Hey Yigit,
that woks with the icon – thx!
And what do I have to do in order to have the title beneath with the same effect?
Best, Tilman
Hi!
Please add this css code:
.avia-icon-list li:hover .iconlist_title {
color: red !important;
}
If you want them to change color simultaneously, use this:
.avia-icon-list li:hover .iconlist_title, .avia-icon-list li:hover .iconlist_icon {
color: red !important;
}
Cheers!
Ismael
cool – thx a lot, Ismael !
Cheers, Tilman