Log in

View Full Version : BUG - category table generation


Gladius2007
06-14-2009, 04:43 PM
If you have 7 or more categories, the last categories in the categories row at arcade.php main get squished and not properly spaced out like the previous ones. Basically, the automatic generation of that table is messed up because it gives each cell a width of 15%. Here's hoping for a fix in the next version because it looks crappy right now.

Basically, up to 6 categories, it looks nice like:

[ Cat 1 ][ Cat 2 ][ Cat 3 ][ Cat 4 ][ Cat 5 ][ Cat 6 ]

add more and you get:

[ Cat 1 ][ Cat 2 ][ Cat 3 ][ Cat 4 ][ Cat 5 ][ Cat 6 ][Cat 7][Cat 8]

etc.

MrZeropage
07-05-2009, 07:06 AM
by now you can change this here:

open /arcade/skins/skin_Arcade.php

search forfunction cat_cell($cat) {
global $ibforums;
return <<<EOF
<td width="15%" class="alt1" align="center" style="font-weight: normal;">

Gladius2007
07-05-2009, 11:00 AM
Thanks.