Am using the Barthelme theme, but am struggling with finding out how to change the following:
Change date entry color on the front page to black (now it's dark gray) - see here http://www.litterless.org
Move the comments boxes/blocks to the left, so they align with the rest of the post - see here http://www.litterless.org/?p=3
Appreciate any help. Thanks.
this will get you closer to what you want with your comments
div.comments ol.commentlist li{background:#FFFFFF;margin:1em 3em 1em -1em;padding:0.5em 1em;}
that would replace this
div.comments ol.commentlist li{background:#FFFFFF;margin:1em 3em;padding:0.5em 1em;}
for the date color change the #444 in the following to #000
body.home div#content div.entry-meta abbr.published,body.archive div#content div.entry-meta abbr.published,body.search div#content div.entry-meta abbr.published{color:#444;font-size:1.1em;word-spacing:0.2em;}
Great, thanks, that was helpful.
Another (hopefully) last question. Is there a way I can apply an underline hover to all links? Currently, it's only the case with the sidebar. Would like to keep it consistent throughout the site (underline all links when hover).
Cheers!
yep! it looks like youll have to add it in.
div#content a:hover{text-decoration:underline;}