(Untitled)

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

redwolf September 18 2006, 04:33:37 UTC
This will change everything in the post to black. Just remove the bits you don't need:

/* 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

leosapiens September 18 2006, 05:05:45 UTC
Horaay, thnk you!

Uhm, and the comments too? And all the links, including sidebar?

Reply

redwolf September 18 2006, 07:33:55 UTC
Sorry, I assumed it was entry only. nimoloth's solution will fix the bulk, but there are some places that need to be specifically changed too.

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

leosapiens September 18 2006, 07:43:54 UTC
You're the best! thanks! :)

Reply


nimoloth September 18 2006, 05:04:36 UTC
Put these in your Custom CSS.

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

nimoloth September 18 2006, 05:05:23 UTC
Sorry, use American splleing for color at all times.

body { color: #000000; }

Reply


Leave a comment

Up