Unable to remove CSS class a: hover background-color

cunningfox picture cunningfox · Feb 10, 2013 · Viewed 31k times · Source

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.

Answer

Rob Stevenson-Leggett picture Rob Stevenson-Leggett · Feb 10, 2013

Try

.press-title a:hover { background-color: transparent; text-decoration: none; }