I saw the issue on Firefox and IE6. Didn't check IE7.
The other thing to do, is to make a change in the module files for the all the different product listings. For example, in modules/new_products.php, you can change:
toCode:$col_width = floor(100/$num_products_count); } else { $col_width = floor(100/SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS); }
So that 50% becomes 49.5%, 33% becomes 32.5%, etc. I actually normally do the above on all zen cart installs, as I like to be able to add some padding between the columns. But I'm designing a new template, and want to change as few files as possible.Code:$col_width = floor(100/$num_products_count) -.5; } else { $col_width = floor(100/SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS)-.5; }
I found that adding left and right padding to .vDotLine works in Firefox, but not in IE, and it seems that either the option in this post, or the one above, is the best for cross browser issues.




