View Single Post
  #10 (permalink)  
Old Apr 28th, 2008, 10:19
Aso's Avatar
Aso Aso is offline
Chief Moderator

SuperMember
Join Date: Oct 2007
Location: UK
Posts: 1,011
Blog Entries: 2
Thanks: 5
Thanked 23 Times in 20 Posts
Send a message via Skype™ to Aso
Re: Just some simple css help! Please??

This is down to text-transform: uppercase.

You need to remove this line that applies to the corresponding tag, which could be any of these;
Code: Select all
.cat {text-transform: uppercase;}

.cat a:hover{
text-transform: uppercase;
color: silver;}

h3 {
padding-top: 10px; 
text-transform: uppercase;
}

wp-calendar th {
    font-style: normal;
    text-transform: capitalize;
    }

#sidebar2 h1 {
font-size: 2em;
text-transform: none;
line-height: 1.2em;
}
Reply With Quote