Letters all Capital

Random stuff about serendipity. Discussion, Questions, Paraphernalia.
Post Reply
ameo
Regular
Posts: 143
Joined: Fri Sep 26, 2008 4:13 am

Letters all Capital

Post by ameo »

using BP theme, post title appears in capital letters.

how can i change that?

http://www.bluecirclet.com/archives/160 ... l-DVD.html

Thanks
sonichouse
Regular
Posts: 196
Joined: Sun May 11, 2008 2:53 am
Contact:

Re: Letters all Capital

Post by sonichouse »

ameo wrote:using BP theme, post title appears in capital letters.

how can i change that?

http://www.bluecirclet.com/archives/160 ... l-DVD.html

Thanks
In your blue_style.css it has the following

Code: Select all

#content h4 {blue_style.css (line 134)
font-size:120%;
letter-spacing:0.2em;
margin:5px 0 15px;
text-transform:uppercase;
}
Just remove the text-transform if required.
yellowled
Regular
Posts: 7111
Joined: Fri Jan 13, 2006 11:46 am
Location: Eutin, Germany
Contact:

Re: Letters all Capital

Post by yellowled »

sonichouse wrote:In your blue_style.css it has the following

Code: Select all

#content h4 {blue_style.css (line 134)
font-size:120%;
letter-spacing:0.2em;
margin:5px 0 15px;
text-transform:uppercase;
}
Just remove the text-transform if required.
Even better: Create /templates/bulletproof/user.css, add

Code: Select all

#content h4 { text-transform: none !important; }
save it, go to the BP theme options and set the option to use user.css (second option) to "Yes".

Why is this better? Because your changes to user.css will not be overwritten in case of an update to s9y and/or BP :-)

YL
ameo
Regular
Posts: 143
Joined: Fri Sep 26, 2008 4:13 am

Post by ameo »

Thanks yellowled, sonichouse


the user.css worked perfectly
Post Reply