Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #373602

    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.

    #373677

    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

    #373681
    This reply has been marked as private.
    #373699

    Hey!

    Try adding this to your custom CSS.

    .av-icon-char:hover { color: red !important; border-color: red !important; }
    

    Cheers!
    Elliott

    #373733

    That works! But how do I do it for each different icon?

    #373766

    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

    #373818

    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)?

    #373830

    Hi!

    Please add following code to Quick CSS

    .av_font_icon.av-icon-style-border .av-icon-char:after {
    display: none;
    }

    Regards,
    Yigit

    #373878

    Perfect. Thanks so much for your help.

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Hover over icons’ is closed to new replies.