Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2007-12-16 19:20:25
- nyckidd
- New Member
- Registered: 2007-12-16
- Posts: 4
Font Color ( How do i customize )
Hey txp family…..how do i customize font color this is what i want to do …..i posted my first article and all the text is black now i want to highlight one paragraph and have the color of the font to be blue….i looked over textile and all but no help can anybody help me….
Offline
Re: Font Color ( How do i customize )
use css to style your one paragraph. probably need to add a class to that specific one. don’t know how to do it with textile though as i never use it.
Offline
#3 2007-12-16 21:10:22
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: Font Color ( How do i customize )
CSS:
p.blue {
color: blue;
}
Article:
p(blue). This paragraph will be blue.
Offline