Going nuts here, need CSS help
On one of my sites, I am currently displaying a dorky avatar image and author byline, with date of publication. See here [fornacalia.com]
I want the date to show, but not the dorky avatar and author. Inspection reveals that the avatar and author are tagged <address class="byline">
and I can prevent display in Safari by adding display: none;
as an override.
But when I put Address.byline { display: none; }
or address[class="byline"] {display: none;}
in the stylesheet, it has no effect.
This is weird. Any ideas?