
Originally Posted by
julie.t
I am also having trouble getting the additional images to line up horizontally. I have moved them right underneath the main image and they are going down in a row instead of in columns. I have a stylesheet just for this page.
#productAdditionalImages {
clear:both;
margin:0pt auto;
text-align:center;
width:100%;
}
.additionalImages {
float:left;
margin:0pt auto 18px;
padding:0pt;
text-align:center;
width:100%;
}
.additionalImages img{
border:1px dashed #C5CEA5;
padding: 5px;
}
I have tried most of the fixes posted here but still no luck. If someone could take a look that would be great.
Here is a link to the page.
Hope you can help 
Ok, the biggest issue is that in your main stylesheet you changed .back from:
Code:
.back {float:left;}
to
Code:
.back {clear:both;}
Now, the product additional images uses .back to make it float left.
But if you change it .back back to the original, it messes up the rest of your layout; I'm guessing you changed a lot.
So, instead, add this to your css (the main stylesheet, or your extra one, doesn't matter):
Code:
#productAdditionalImages .back {clear:none!important;float:left;}
and then change this (in your main stylesheet):
Code:
.buttonRow back, .buttonRowforward, #cartAdd, #productTellFriendLink, #productAdditionalImages, .imgLinkAdditional {
margin-left: auto; margin-right: auto; padding: 20px;
}
to this:
Code:
.buttonRow back, .buttonRowforward, #cartAdd, #productTellFriendLink, .imgLinkAdditional {
margin-left: auto; margin-right: auto; padding: 20px;
}