As a result of CSS updates with the product listing and other ZC admin settings you may see the categories listed in a column that does not adhere to the parent display block CSS.
To fix this we can remove the inline php - css styling injection here:
includes/modules/YOUR_TEMPLATE/category_row.php
line 39
$list_box_contents[$row][$col] = array('params' => 'class="categoryListBoxContents"' . ' ' . 'style="width:' . $col_width . '%;"',
changes to this:
$list_box_contents[$row][$col] = array('params' => 'class="categoryListBoxContents"' . ' ' ,
Using responsive_classic template.
Note: If your custom template relied on the hard code this may or may not be a 'fix' for you.
Bookmarks