Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1226065

    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

    #1226127

    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

    #1226190
    This reply has been marked as private.
    #1226283

    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

    #1226335

    Thanks it worked. Kudos

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Transform Icons’ is closed to new replies.