
Originally Posted by
Boggled
I tried really hard to do this without having to bother you.
I'm trying to relocate the Add to Cart button, move the additional images up just a bit and remove the dotted line divider from the additional images.
The attached screenshots show what I have now and what I want if it's possible.
Any help is greatly appreciated!!

Well, without seeing a direct link, I can't give specific instructions tailored to your current changes, but I can tell you that you'll need to be sure to paste the add to cart directly after <!--eof attributes module -->, be sure to remove any <br class="clearBoth" /> between the attributes section and the cart section.
Then in the css, you'll have to mess with the width of #rightFloat to give the options and cart more room, you'll have to reduce the width and remove the margin for #productAttributes, and change #cartAdd to float:left. There's got to be enough width for cartAdd to "float" to the left of #productAttributes.
You can add this to your css to get rid of the dotted lines between additional images.
Code:
#productAdditionalImages .vDotLine, #productAdditionalImages .hDotLine {background:none;}
This causes the top padding for the additional images - and many other things, so realize that if you remove the padding here, you remove it for everything else in the list (you can just remove .additionalImages from this list):
Code:
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
margin:1em 0;
}
Bookmarks