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
$site_title = ucwords($site_title);
$site_descrip = strtolower($site_descrip);
$site_descrip = ucfirst($site_descrip);
|
Quote:
Originally Posted by Preacher
HTML Code:
<style type="text/css">
span {text-transform: capitalize;}
</style>
</head>
<body>
<span>this is my title</span>
|