Hey everybody, I need some styling help.
The way I like to write my blog is that when I want to emphasize text, I make it both bold and a bright green color (which looks quite nice and stands out on my dark grey background). The problem is that some feed readers pass on this span tag, making it hard for some of my readers to read.
I attempted to add a code to my CSS that would make all bold text appear as green on my blog which would eliminate the need for the in-line span code. Here's what my code looked like:
`.post strong {
color: #3ce020;
}'
That had no effect on my bold text.
Does anybody know of an effective way to remedy this problem for those read my blog on feeds? I want to continue using the color without hurting my feed-readers' eyes!