How Do I Get Html Text To Not Be All Caps With A H1 Tag?
I need the text on my page to be mixed case AND be an H1 heading. Whenever I apply the H1 tag, the text is all CAPS when I upload it. I’ve used Dreamweaver and Nvu and the problem is the same.
So for instance if I have “This Is My Mixed Case Title” with a H1 tag, it actually displays as “THIS IS MY MIXED CASE TITLE”
Check your style sheet, and look for a property called "text-transform" under your h1 selectors. It's probably set to "text-transform:upper-case"; change it to "text-transform:capitalize" so that it capitalizes the first letter of each word.
Simply remove any reference to "text-transform" for the H1 tag in your CSS stylesheet. The default, or normal, is to have the text appear however you type it.
Joyc ehttp://www.DesignByJoyce.com/
Modify the CSS text-transform for the H1 element like everyone else said.
If your typing the tag correctly then it should not be caps locking on you if you type <h1> "This Is My Mixed Case Title" </h1>
it should not come up all capped.