All of our data in our database is entered in ALL CAPS. When I pull that information (i.e. First and Last Name), I would like it to say "John Smith" vs. "JOHN SMITH." I tried using text-transform:capitalize;
but that only capitalizes the first letter. It does not make all other letters lowercase. I also tried this (with no success):
<div class="profile">
<h2 style="text-transform:lowercase;"><span style="text-transform: capitalize;">Welcome _MEM_FirstName_ _MEM_LastName_,</span></h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam neque lectus, molestie quis ullamcorper ac, vesti bu lum ut elit. Donec quis lacus sem, a pharetra neque. Cras ultricies purus ac ligula lacinia ullamcorper.</p>
<p>Your Walser Rewards card is also your My SA Rewards card. While at Super America locations you can get gas discounts and earn speedy rewards too.</p>
</div>
Any idea on how to convert the text from UPPERCASE to Capitalized?