Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Why is my ‘a’ inheriting this css… Re: Why is my ‘a’ inheriting this css…

#116476
TheDoc
Member

You have this:

.social a.active, a:hover, a:focus, a:active { /* styles */ }

…but it should be like this:

.social a.active, .social a:hover, .social a:focus, .social a:active { /* styles */ }