View Single Post
  #13  
Old 06-30-2007, 03:31 PM
  Zaja's Avatar 
Zaja Zaja is offline
 

X-Adept
  
Join Date: Mar 2004
Location: The Universe is my home
Posts: 420
 

Default 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
Reply With Quote