UBB.Dev
Posted By: msula Some cosmetic enhancements - 10/18/2002 4:26 AM
I Have noticed on many forums that when viewing a thread the user's name is bold and everything else isn't. But for threads, the name is not bold and the title is.

Depending on your color scheme it almost looks like the title is more important and has caused some confusion on my forums, so if you want to change it so that the name is bold and the title is not, here is the easy fix.

In showthreaded.php find:
code:
$Username$MainUserStatus
</td>
</tr>
<tr>
<td class="small">
<b>$Title</b>



And replace with:
code:
<b>$Username$MainUserStatus</b>
</td>
</tr>
<tr>
<td class="small">
$Title



In showflat.php find:
code:
{$postrow[$i]['Username']}{$postrow[$i]['UserStatus']}
</td>
</tr>
<tr>
<td class="small">
<b>{$postrow[$i]['Title']}</b>



And replace with:
code:
<b>{$postrow[$i]['Username']}{$postrow[$i]['UserStatus']}</b>
</td>
</tr>
<tr>
<td class="small">
{$postrow[$i]['Title']}



I know this is just a real trivial and easy to do thing, but I figure a lot of people may not have thought about it before, but IMO I like it a bit more this way

Here is an example, you can compare it to what it looks like normally by looking to the left
[]http://www.michiganjeepers.com/photopost/data/3004/2hack.gif[/]
Posted By: AllenAyres Re: Some cosmetic enhancements - 10/18/2002 7:34 AM
cool, yes, that makes sense
Posted By: Rick Re: Some cosmetic enhancements - 10/22/2002 7:34 PM
Good point. Consider this changed for the next release.
Posted By: msula Re: Some cosmetic enhancements - 10/23/2002 3:24 AM
Excellent, thanks!

Can't believe I actually had a valid suggestion to become a real feature
Posted By: JoshPet Re: Some cosmetic enhancements - 10/23/2002 4:37 AM
Good goin' Jeremy.
Posted By: msula Re: Some cosmetic enhancements - 10/23/2002 5:38 AM
Thanks, I made a few more important items bold, as I think some of the links should stand out more than they currently do. For example, in ubbthreads.tmpl find:

code:
{$forum[$c][$f]['Title']}


and change that to:
code:
<b>{$forum[$c][$f]['Title']}</b>



You can see a working example of that here: www.michiganjeepers.com/forums/ubbthreads.php

And also the subject link in postlist.php. So look in postlist.tmpl for:

code:
{$postrow[$i]['Subject']}


and change that to:
code:
<b>{$postrow[$i]['Subject']}</b>



This may not suit everyone, but most forums I've seen have these bold, and IMO are easier to see as important items
© UBB.Developers