Quote:
Originally Posted by Locked Up
Mine aren't missing ... but can anyone lead me to the tempate to make the font of the categories larger?
|
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;
}
and replace it with
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;
}