The title in each of my posts are in Uppercase - how can I make it be upper and lower case?
The title in each of my posts are in Uppercase - how can I make it be upper and lower case?
You have the following in your style.css file starting on line 225:
#main h1 {
background-color:transparent;
color:#7C7C7C;
font-weight:bold;
line-height:120%;
margin-top:0;
text-transform:uppercase;
}
Just remove the 'text-transform:uppercase;' line and your done!
Looking again, you will also need to remove that line from the h1 style starting on line 168.
thanxx
hi guys, I also need help to change the titles of my posts.All are in capital letters!
This is my site http://techtres.net/
Please help
Try deleting the uppercase style in main.css on line 295:
.post_title {
font-size: 26px;
font-weight: normal;
line-height: 34px;
margin: 0;
padding: 0;
position: relative;
text-transform: uppercase;
top: 7px;
word-spacing: 3px;
}This topic has been closed to new replies.