I have solved this already. I was meaning to post the answer. I just haven't had time.
I took the page called additional_images.php found in the MY_STORE\includes\modules folder and changed this:
Code:
if ($num_images) {
$row = 0;
$col = 0;
if ($num_images < IMAGES_AUTO_ADDED || IMAGES_AUTO_ADDED == 0 ) {
$col_width = floor(100/$num_images);
} else {
$col_width = floor(100/IMAGES_AUTO_ADDED);
}
WITH THIS:
Code:
if ($num_images) {
$row = 0;
$col = 0;
if ($num_images < IMAGES_AUTO_ADDED || IMAGES_AUTO_ADDED == 0 ) {
$col_width = floor(100);
} else {
$col_width = floor(100);
}
What was happening is it would show my images and start the next image if I had 3 images 33% of that image and then the next 33% of it.
4 images = 25%
2 images = 50%
I just took away the math and told it to span 100%