Sep 17, 2006 13:50
Hello. :)
I am using Weston Blue.
Is there a way to change the entry text color and the links color to black? I went through the tags, and nothing that is there, seems to work. I must be doing it all wrong.
Help?
page:links:colors
Leave a comment
Comments 6
/* date link */
.asset-name a:link,
.asset-name a:visited,
.asset-name a:hover {
color : #000;
}
/* content and time stamp */
.datetime,
.asset-content {
color : #000;
}
/* entry footer links */
.asset-meta-comments a:link,
.asset-meta-comments a:visited,
.asset-meta-comments a:hover {
color : #000;
}
/* entry footer link divider */
.asset-meta-list .item {
border-color: #000;
}
Reply
Uhm, and the comments too? And all the links, including sidebar?
Reply
You can jam nearly all of this stuff together into one lump. I've just broken it down so you know which bits change what section of the page.
body {
color : #000;
}
/* generic links */
a:link,
a:visited,
a:hover {
color : #000;
}
/* current state of generic links */
.current a:link,
.current a:visited,
.current a:hover {
color : #000;
}
/* entry content and time stamp */
.datetime,
.asset-content {
color : #000;
}
/* entry footer links */
.asset-meta-comments a:link,
.asset-meta-comments a:visited,
.asset-meta-comments a:hover {
color : #000;
}
/* entry footer link divider */
.asset-meta-list .item {
border-color: #000;
}
/* comments */
#comments,
.comments-header,
.comment {
color : #000;
}
/* sidebar widgets */
.widget-list,
.widget-header,
.widget-content {
color : #000;
}This doesn't take into account the coloured borders between link lists and under headings in the sidebar. If you ( ... )
Reply
Reply
General text colour:
body { colour: #000000; }
Generic links:
a { color: #000000; }
However, that won't change a lot of the links - you need to go through the CSS classes to find which apply to which bits of text. There are a few posts regarding CSS, CSS templates and CSS class lists.
Reply
body { color: #000000; }
Reply
Leave a comment