
06-30-2007, 03:31 PM
|
|
 | |
|
|
 X-Adept
|
|
Join Date: Mar 2004
Location: The Universe is my home
Posts: 420
|
|
|
Re: change upper to lower case
Quote:
Originally Posted by crazyoval
Hi all, I cant find my old posting on this. Im trying to find how I can change my template skin from showing upper case automatically to lower case as standard but with the first letter as uppercase.
Can anyone help please?
thank you :O)
|
Open skin1.css file and remove the text-transform: uppercase; property from following classes:
.VertMenuTitle
.DialogTitle
.DialogTitle2
.ProductTitle, .ProductTitle a
.categories a
.categories a:hover
You can use the :first-letter pseudo-element to create "the first letter as uppercase" effects....for example:
.VertMenuTitle:first-letter {text-transform: uppercase; font-weight: bold;}
__________________
_/ _/ _/ _/ _/ _/ _/ _/ _/
7dana.com
|
|