How to change header to lowercase?

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Sun Aug 25, 2013 7:03 pm
Reply with quote
Report this post
Hi,

How do I change my header to lowercase? Currently, it's in uppercase default.

Thanks,
Chandan
User avatar
Expert Boarder

GK User
Sun Aug 25, 2013 10:01 pm
Reply with quote
Report this post
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/
User avatar
Platinum Boarder

GK User
Mon Aug 26, 2013 5:08 am
Reply with quote
Report this post
Thanks Pawel,

I put this line in override.css and It doesn't reflect on my site. URL - http://www.chandank.com/application-server/was

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/
User avatar
Expert Boarder

GK User
Mon Aug 26, 2013 3:03 pm
Reply with quote
Report this post
Please help!
User avatar
Expert Boarder

GK User
Mon Aug 26, 2013 11:38 pm
Reply with quote
Report this post
You could add !important at the end,
but okey try this:

Code: Select all
article header h1  { text-transform:none;}
User avatar
Platinum Boarder

GK User
Tue Aug 27, 2013 8:20 am
Reply with quote
Report this post
Thank you, it worked!
User avatar
Expert Boarder


cron