Okay
  Public Ticket #887045
Icon hover color
Closed

Comments

  •  2
    Ben Brewer started the conversation

    How do  get the icons in my footer to change color on the hover? I already was able to add href to them but I cannot get "hover-color" css to work.

  •  8,996
    Tahir replied

    Hey ,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    #footer-outer a:hover i[class^="icon-"]{
        color: #fff !important;
    }
    
    
    #footer-outer a i[class^="icon-"]{
        transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        -webkit-transition: all 0.2s linear;
    }

    Thanks


    ThemeNectar Support Team