CMS Development

Maeglin
Participant | Elite Partner
Participant | Elite Partner

Remove Hover on Subscription Preferences page

SOLVE

Hi guys,

 

 I'm hoping you can help me out with a question.

My subscription preferences page has and odd hover on the subscription-types that I cannot seem to clear. To clarify: I would like there to be no hover..

 

link to page

 

Any css-wizards here that can lend a helping hand?

Thank you very much!

0 Upvotes
1 Accepted solution
piersg
Solution
Key Advisor

Remove Hover on Subscription Preferences page

SOLVE

Hi @Maeglin, a "hovered" class is being added via JS on hover, as opposed to the hover affect being applied via CSS. This CSS should work:

.item-inner.hovered {
    box-shadow: none !important;
}

 

View solution in original post

2 Replies 2
piersg
Solution
Key Advisor

Remove Hover on Subscription Preferences page

SOLVE

Hi @Maeglin, a "hovered" class is being added via JS on hover, as opposed to the hover affect being applied via CSS. This CSS should work:

.item-inner.hovered {
    box-shadow: none !important;
}

 

Maeglin
Participant | Elite Partner
Participant | Elite Partner

Remove Hover on Subscription Preferences page

SOLVE

@piersg Amazing! I was so close, but referenced the #email-prefs before the class 😅

Thanks, it works 😄 

0 Upvotes