The Arcive of vBulletin Modifications Site. |
|
categories missing Details »»
|
|||||||||||||||||||||||||
I know this is something stupid that I am missing, but I can't find it anywhere. On my arcade, the categories do not show up. I have been through all the settings a couple of times, what am I missing?
Show Your Support
|
|||||||||||||||||||||||||
| Comments |
|
#2
|
||||
|
||||
|
Where are you looking for your categories to display? They should be displaying in a table below the arcade stats and above the game listings.
|
|
#3
|
||||
|
||||
|
Not there for me either.
|
|
#4
|
|||
|
|||
|
Mine aren't missing ... but can anyone lead me to the tempate to make the font of the categories larger?
|
|
#5
|
||||
|
||||
|
Quote:
there is no template to make that font larger.. you have to edit the skin_arcade.php find Code:
function cat_cell($cat) {
global $ibforums;
return <<<EOF
<td width="15%" class="alt1" align="center" style="font-weight: normal;">
{$cat}
</td>
EOF;
}
Code:
function cat_cell($cat) {
global $ibforums;
return <<<EOF
<td width="15%" class="alt1" align="center" style="font-weight: normal;">
<div style="font-size: 11pt;">
{$cat}
</div>
</td>
EOF;
}
|
![]() |
|
|