I have the CSS and Font upgrades. I am CSS illiterate, though I'm learning. And I'm a great searcher, so found most of my changes that way. Now, I'm stumped.
This is what I have for my code, which changes all the font colors, sizes, etc. I love it, except for it sometimes overriding everything else!
#access {
background:#0f224d!important;
}
#access li:hover > a,#access a:focus {
color:#0f224d;
}
.page .entry-title {
color:#16316e;
}
body,input,textarea .entry-title,.entry-title a,.singular .entry-title {
color:#16316e;
}
a,.entry-title a:hover,.entry-title a:focus,.entry-title a:active {
color:#16316e;
}
#site-description {
color:#1d408f;
font-size:18px;
margin:0 270px 3.65625em 0;
}
body,input,textarea {
color:#10234e;
}
#reply-title {
color:#16316e!important;
}
Issues:
1. Links in posts:
Since all text is the same color, the links in posts aren't easily visible, and theme options is overridden. I've been manually entering this in HTML: <span style="color: #244fb0; text-decoration: underline;"> and it works but would like to have it be part of CSS. How do I do that?
2. More Tag:
I'm less than pithy, so the More Tag is wonderful! I've figured out how to change the text, but I want to change the color so it stands out more, and it doesn't let me in HTML/Visual. Is there a way to do it through CSS?
3. Blockquotes:
When I look at the Twenty Eleven theme description page it says, "Be sure to style the citation" but it doesn't show how to. I can do it manually, but ideally want to do it through CSS. I found this post and was able to change the font size and color for the blockquote,
.format-quote blockquote {<br />
color:#1d408f!important;<br />
font-size:20px;<br />
}
but the coding for cite isn't working, not with my changes or as posted:
.format-quote cite {<br />
display: block;<br />
text-align: right;<br />
margin: 1em 0 0;<br />
color: #999;<br />
font-size: 12px;<br />
letter-spacing: 0.3em;<br />
word-spacing: 0.2em;<br />
line-height: 2.6em;<br />
text-transform: uppercase;<br />
font-style: normal;<br />
}
I've added !important and I don't know if I'm not accurately indicating the citation in a quote, or I've messed up something else. I don't have any quotes on the blog, yet, until I figure this out. What I care about for cite are: text-align:right
and font-size (smaller than quote)
and font-style (non-italicized).
How do I do that through CSS?
4. Side Widget stats
Finally, the color coding shown at the top gets all the info in the side widgets the correct color, except for Blog Stats, that has stayed a soft grey. How would I change that color?
Thank you in advance for help with this, and for all the help I've gotten through searching!
The blog I need help with is sensuousinkspiller.com.