4 and 5 divide evenly into 100; 3 and 6 do not. Your problem is with rounding - see my post above.
For the new products centerbox, in /includes/modules/new_products.php find this
PHP Code:
// show only when 1 or more
if ($num_products_count > 0) {
if ($num_products_count < SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS || SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS == 0 ) {
$col_width = floor(100/$num_products_count);
} else {
$col_width = floor(100/SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS);
}
and change the 100 to 99 or whatever you want.
Save as /includes/modules/your_template/new_products.php.
Other locations can be changed similarly if needed.