
02-09-2007, 06:41 AM
|
|
 | |
|
|
 eXpert
|
|
Join Date: Oct 2004
Location: Kansas
Posts: 343
|
|
|
Re: change upper to lower case
Check the skin1.css:
Quote:
Text Transform Case
Case allows you to change how a block of text will appear. This is an easy way to override the formatting of a block of text that has already been typed and placed in the document.
Values include: capitalize, uppercase, lowercase, none
The values of this property have the following meanings:
capitalize: first character of each word is uppercase
uppercase: all characters are uppercase
lowercase: all characters are lowercase
none: element ignores parent element value
<style>
P { text-transform: uppercase }
</style>
<P>This is some text</P>
|
|
|