Remove mouse-over effect from feature list item

Hello Muffin-Team,

Is there a way to disable the mouse-over / highlight effect on the feature list item so nothing happens when you mouse over?
Page I am working on: https://dev.da-molar.at/?page_id=64

Thanks in advance for your help!

Comments

  • Hello,
    you can use this custom css
    .feature_list ul li:hover, .feature_list ul li:hover a {
    background: white !important;
    }
    .feature_list ul li:hover i, .feature_list ul li:hover i{
    color: #0095eb !important;
    }
    .feature_list ul li:hover, .feature_list ul li:hover a {
    color: #000 !important;
    }
    thanks
  • That works perfectly, thanks a lot!
Sign In or Register to comment.