Page 1 of 1

Bulletproof theme, changing the color of <b></b>

Posted: Thu Sep 13, 2007 8:04 pm
by JWalker
Hi,

Bulletrpoof theme, blue color set. How to change the color of <b>bold</b> text? Same question for the other color sets.

Regards,

Posted: Thu Sep 13, 2007 9:38 pm
by Don Chambers
Which text specifically are you wanting to change?

Posted: Thu Sep 13, 2007 9:50 pm
by JWalker
The texts in the entry body (the contents of the entries) and the static pages.

Posted: Thu Sep 13, 2007 9:59 pm
by Don Chambers
I presume you mean the links, since those are blue, and sometimes bold??

The first is the link color, and the second is the hover color.

Code: Select all

a {
    color: #1F5F7F;
    text-decoration: none;
}

a:hover {
    color: #505050;
}

Posted: Thu Sep 13, 2007 10:13 pm
by JWalker
No, no links,

when I write a posting I make some words bold among the others that are normal.

Posted: Thu Sep 13, 2007 11:36 pm
by Don Chambers
If you use the wysiwyg editor, you can mark text to be any color you want.

If you are not using the wysiwyg editor, and your bold text is ALWAYS enclosed in <b></b> tags, you can add this to blue_style.css, substituting whatever color you want:

Code: Select all

.serendipity_Entry_Date b {color: #999999}

Posted: Fri Sep 14, 2007 9:12 am
by JWalker
Hi,

Thanks a lot,

I use WYSIWYG editor, but want all <b>bolds</b> to be with the same color and not to set the color for every one bold piece of text, so

Code: Select all

.serendipity_Entry_Date b {color: #999999}
is best for me.

Posted: Fri Sep 14, 2007 3:09 pm
by Don Chambers
Understood - that should work just fine then.