Welcome to Webune.com

These forums are for support for our valued Webune Customers.

Webune offers great support for their services. We provide web hosting for many types of websites.

if you are a webmaster or an admin for your website, you know sometimes its appropiate to capitalize your letters.

this becomes a challenge when your websites are actually created from a database. CSS is a great feature in your web pages because you can make all that dynamic content more consistent

for example. lets say i have this page title:


webune - how to capitilize letters


as you can see from my example, i am not useing uppercase on the first letters so we can use CSS text-transform: capitalize property to make the letters capitals:


webune - how to capitilize letters


as you can see, i have capitalized my example above. how did i do it. i used this HTML code to make them capitalized:

HTML/CSS CODE:
<div style="text-transform: capitalize; ">webune - how to capitilize letters</div>


hope that helps