I don't know what to do. I'll change the names' style in the sidebar, so it's not uppercase.
I've tried capitalize and none in the text-transform, but nothing changes.
This is what it stands in the stylesheet.
h1 {
border-bottom: #fff solid 0px;
background-color:#fff;
text-transform: none;
font-weight: normal;
font-size: 12px;
font-family: verdana;
color: #F9FAF5;
text-align: right;
letter-spacing: 1px;
margin : 0px;
padding-left: 2px;
line-height: 18px;}
Link to my website: http://idapip.net/wp/
I don't think you have any h1 in the sidebar.
Ups, what do I have to do then?
1. Delete all the occurrences of text-transformation from the style sheet :)
2. Check what is the tag around the text you want to change:
http://codex.wordpress.org/Finding_Your_CSS_Styles - and modify it in the stylesheet.
It is in the navi-div
look for
#navi h1{
...
text-transform:uppercase;
...
}
in your stylesheet
#navi h1{
That's extremely bad coding! You should have ONLY one h1 on a page and that should be the main title of the blog/site.
The coding was with the theme I downloaded... :o)
Sorry, idapip, I didn't say it was your code. Unfortunately there are many self-appointed designers who release themes with bad code.
moshu is right, there is one navi-div in another navi-div...
But the problem is resolved. I'm happy ;o)