Page 1 of 1

Letters all Capital

Posted: Mon Dec 29, 2008 11:42 pm
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

Re: Letters all Capital

Posted: Mon Dec 29, 2008 11:52 pm
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.

Re: Letters all Capital

Posted: Tue Dec 30, 2008 12:03 am
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

Posted: Tue Dec 30, 2008 1:03 am
by ameo
Thanks yellowled, sonichouse


the user.css worked perfectly