As I posted before I did not like the way the crowns are displayed in the postbit (somewhat 20 pages ago) and I used a javascript and buttons to collapse the list. But : 3rd party Javascript does not work 100% hence I am using now vbulletin's own collapse technique ..
When modfied you will see THIS below the avatar :
When hitting the small arrow :
The code :
Insert this in your postbit_legacy template (Sorry, dont use the normal postbit, dont know if this is working there too and how it looks)
Code:
<!-- Arcade Highscore -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('my_table_$post[postid]')"><img id="collapseimg_my_table_$post[postid]" src="$stylevar[imgdir_button]/collapse_tcat{$GLOBALS['vbcollapse']['collapseimg_my_table_' . $post[postid]]}.gif" alt="" border="0" /></a>
Arcade Highscore
</td>
</tr>
</thead>
<tbody id="collapseobj_my_table_$post[postid]" style="display: none;">
<tr>
<td class="alt1">
$post[crowns]$post[champtext]
</td>
</tr>
</tbody>
</table>
<!-- / Arcade Highscore -->
On my example however I played a bit around with the table size etc.
Just change width="100%" as you like it. Don't forget though, the default amount of crowns is set to 5 .. to change the amount (like in my example to three) look in the plugin
ibProArcade: Crowns in Postbit for
Code:
$crown_end = ($crown['type'] == 1) ? '' : '<br />';
$counter=0;
foreach ($champs["$post[userid]"] AS $this_game)
{
if ($crown['type'] == 3)
{
if ($counter == 5)
{
And change
if ($counter == 5) accordingly ...
hope this helps ..