Re: Main Java TWO Columns - javaimgcols add-on A user asked me how to set the add-on so each listing will have the "same" number of thumbnails in each column. This means different settings for each listing. So there is the need to edit the addon.inc.php file. Find these lines: PHP Code: if ($num_images > 0) { $display .= '<div id="addon_javaimgcols_thumbs_left">'; Between those lines insert one or another (it is up to you): PHP Code: $max_thumbs = CEIL($num_images/2); // ROUND UP or PHP Code: $max_thumbs = FLOOR($num_images/2); // ROUND DOWN This way, no matter what value you set for the variable "$max_thumbs" as initially indicated - now this value will be always the HALF (up or down) of the total of thumbs of each listing. For the people that preffer this way, download the version 3 of the add-on with those lines modified. You will just need to modify the way it will ROUND, commenting the proper line (I am setting by default to ROUND UP). Thanks, Eduardo.
cms-world