Hi I would like to scale the icons to say 1.2 on hover. I used the below but it did not work:
.av-icon-char:hover {
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
Thanks
Hey demicoli00,
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Hi demicoli00,
Please try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#top .av_font_icon {
transition: all 0.3s ease;
}
#top .av_font_icon:hover {
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
Best regards,
Nikko
Thanks it worked. Kudos