using BP theme, post title appears in capital letters.
how can i change that?
http://www.bluecirclet.com/archives/160 ... l-DVD.html
Thanks
Letters all Capital
-
sonichouse
- Regular
- Posts: 196
- Joined: Sun May 11, 2008 2:53 am
- Contact:
Re: Letters all Capital
In your blue_style.css it has the followingameo 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
Code: Select all
#content h4 {blue_style.css (line 134)
font-size:120%;
letter-spacing:0.2em;
margin:5px 0 15px;
text-transform:uppercase;
}Re: Letters all Capital
Even better: Create /templates/bulletproof/user.css, addsonichouse wrote:In your blue_style.css it has the followingJust remove the text-transform if required.Code: Select all
#content h4 {blue_style.css (line 134) font-size:120%; letter-spacing:0.2em; margin:5px 0 15px; text-transform:uppercase; }
Code: Select all
#content h4 { text-transform: none !important; }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