hover css is... where?

dieketzer

Well-known member
i am really wanting to alter some hover css, but i cannot seem to change this no matter what i try.
is this not .blockLinksList a:hover in xenforo.css?

hating_this.webp
 
That's in xenforo.css:
HTML:
        .blockLinksList a:hover,
        .blockLinksList a:focus,
        .blockLinksList label:hover,
        .blockLinksList label:focus
        {
            background-color: @primaryLighterStill;
            text-decoration: none;
        }

@primaryLighterStill is the colour you want to change.

I changed it to #CC0000 to confirm:
hover.webp
 
Top Bottom