Re: change upper to lower case
hello PhilJ
It does not seem to work
I have tried it in a few places
From this:-
<tr class="CategoriesListRow">
<td valign="top" class="CategoriesListImg"><img src="{$ImagesDir}/custom/blue_arr.gif" width="10" height="14" alt="" /> </td>
<td width="100%" class="CategoriesList"><a href="home.php?cat={$c.categoryid}" class="VertMenuItems">{$c.category}</a></td>
</tr>
<tr>
To This :-
<tr class="CategoriesListRow">
<td valign="top" class="CategoriesListImg"><img src="{$ImagesDir}/custom/blue_arr.gif" width="10" height="14" alt="" /> </td>
<td width="100%" class="CategoriesList"><a href="home.php?cat={$c.categoryid}" class="VertMenuItems">{$c.category|capitalize:true }</a></td>
</tr>
Still all in capitals i only want the first letter caps
|