That's only if you still want it there. I removed it because I have the thread title in big letters at the top (like it is here) so you don't need it in the navbar. It's kind of redundant to have it in both places.
Quote:
Originally posted by TECK
i think the best way is to use the strlen() to limit the lenght.
for example...
in functions.php, replace:
Code:
$nav_title=$threadinfo[title];
with:
Code:
$nav_title=$threadinfo[title];
if (strlen($threadinfo[title]) > 25) {
$nav_title = substr($threadinfo[title], 0, 23) . '...';
}
now all you have to do is change the the values 25 and 23 to whatever you like your title to be in lenght. value 25 represents the total title lenght and 23 represents the total title lenght - 2 characters, because you add the "..." dots at the end.
|