Hi,
How do I change my header to lowercase? Currently, it's in uppercase default.
Thanks,
Chandan
h1 { text-transform:none; }
Pawel F wrote:Hi,
with one line of css
- Code: Select all
h1 { text-transform:none; }
The text-transform CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
How to: http://www.gavick.com/documentation/joo ... -template/
article header h1 { text-transform:none;}