I am trying to change the CSS for the WordPress Classic theme in two ways:
First, to change the color of text for the post title (h3). I have changed it in CSS so that each individual post title is white, like so:
h3 {
border-bottom:dotted 1px #eee;
font-family:'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;
color:#ffffff;
background:#2e2e2e;
margin-top:10px;
padding:10px 5px 5px 10px;
But when I open the blog, and see all posts, the background is #2e2e2e, but the text color is still the green. I can't find the CSS to change that.
Next, I put my photos into tables that I enter as html code. I cannot control the size of the text that I type in the tables. I'll have a line in the table like <tr><td colspan="3">text</td><tr>, and although I've tried to put in font size tags, something in the CSS is overriding that so that the text in the tables is larger than the text in the body of the post. What do I need to do?
Also, I see a lot of three character color codes in the CSS, for example:
a {
color:#675;
}
I've tried to find them in an HTML/CSS color code chart, but they all require six characters.
Thanks!
The blog I need help with is cohn17.wordpress.com.