How to remove hover color from icon box

Hello,

I have a client who is requesting to remove the hover effect / link feature from the icon box. 

They would prefer a static icon without the link... any suggestions or directions on how to accomplish this in the CSS?

Greatly appreciate your help!


Comments

  • Hi,
    Please always attach a link so we can check it out. If the page is offline(localhost) then our help will be limited, you will have to contact us when the page is online. Also please make sure that the page is not under maintenance before you provide us the link.
    It is always a good idea to also attach a screenshot, for that use services like snag.gy or pasteboard.co
    thanks

  • Try this css
    .icon_box:hover .icon_wrapper, .icon_box a:hover .icon_wrapper {
    color: #17375E;
    }
    .icon_box:hover .icon_wrapper {
    transform: scale(1) !important;
    background:white !important;
    }
    .icon_box:hover .icon_wrapper::before, .icon_box a:hover .icon_wrapper::before {
    background-color:white !important;
    }
  • This still didn't work... any other suggestions?
    I added it to the custom css on the page and also tried adding it to custom editor but no positive results.
  • oops I stand corrected ! now it works! 
    Thank you so much!
Sign In or Register to comment.