for the life of me, i cannot figure out how to change the background color of the author name. if you look on this page, you'll see there's a link with "admin".
i have the following css applied but none of the items are working:
.author vcard {background:red;} .author vcard a{background:red;} .author vcard a:link{background:red;} .author vcard a:visited {background:red;}
why isn't my css code affecting it???
please advise. thanks in advance.
are you sure its a background
are you sure its a background colour you require? and not just the text in red. if you infact wanted the text to apear red then i think you should be using a color attribute rather than background.
'hiding author link in
'hiding author link in wordpress' if you want it hidden use a display:none ?
it doesn't work as there is
it doesn't work as there is no such element as 'vcard'. Bone up on your css selector syntax.
I think what you are wanting
I think what you are wanting is
.author.vcard { background-color: #f00; }
That span has two classes, and if you want to use them both, then there you go. I would recommend just choosing one or the other, though.
thanks!
thanks!