change background color on forum sort?

steven s

Well-known member
I'm trying to change the background-color when you hover in a forum to sort a column.
Default:
Code:
.discussionList .sectionHeaders dd a[href]:hover {
    -moz-text-blink: none;
    -moz-text-decoration-color: -moz-use-text-color;
    -moz-text-decoration-line: none;
    -moz-text-decoration-style: solid;
    background-color: #FFF4E5;
}

I thought I'd be able to change the background color by adding to EXTRA.css
Code:
.discussionList .sectionHeaders dd a[href]:hover {
    background-color: #176093;
}

I tried !important.
I tried .discussionList .sectionHeaders dd a[href]:hover
 
Top Bottom