I've created a CSS class .press-title, however I've been unable to remove the backround color applied on hover.
.press-title a:hover { background-color: none; text-decoration: none;}
Ideas?
Link is towards the bottom of the page:
http://domdemarcos.com/typography/
EDIT to reflect change made from reply.
To remove the CSS hover effect from a specific element, you can set the pointer-events property of the element (the hover behavior of which you want to disable) to “none”.
One method to do this is to add: pointer-events: none; to the element, you want to disable hover on. (Note: this also disables javascript events on that element too, click events will actually fall through to the element behind ).
Try
.press-title a:hover { background-color: transparent; text-decoration: none; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With