View Single Post
Old 2007-01-20, 07:09 PM   #5
Toby
Lonewolf Internet Sales
 
Toby's Avatar
 
Join Date: Mar 2005
Location: Houston
Posts: 4,826
Send a message via ICQ to Toby
Thx guys, both of those could come in handy.

Let's take the coding for Title one step further and figure out how to keep it from capitalizing words like in, to, the... unless they're the frist word.

Quote:
Originally Posted by Useless Warrior View Post
$site_title = ucwords($site_title);
$site_descrip = strtolower($site_descrip);
$site_descrip = ucfirst($site_descrip);
Quote:
Originally Posted by Preacher View Post
HTML Code:
<style type="text/css">
span {text-transform: capitalize;}
</style>
</head>
<body>
<span>this is my title</span>
Toby is offline   Reply With Quote