ok here goes, in your /includes/templates/classic/css/stylesheet.css file:
find:
Code:
#additionalImages {
clear:both;
font-size:1.3em;
padding-top: 15px;
float:left;
margin:0 0 0.5em 0;
line-height:1.4em;
text-transform:capitalize;
}
change to:
Code:
#additionalImages {
position:absolute;
top:160px;
right:0px;
width:225px !important;
font-size:1.3em;
padding-top: 15px;
margin:0 0 0.5em 0;
line-height:1.4em;
text-transform:capitalize;
}
find:
Code:
#productAdditionalImages {
margin: 0;
padding:0;
float:left;
width:80%;
}
change to:
Code:
#productAdditionalImages {
position:absolute;
top:190px;
right:0px;
width:225px !important;
text-align:center;
}
find:
Code:
.additionalImages {
float:left;
}
change to:
Code:
.additionalImages {
width:225px !important;
}
find:
Code:
#productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage {
clear:both;
margin:0px 150px 0px 5px;
}
change to:
Code:
#reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage {
clear:both;
margin:0px 150px 0px 5px;
}
and add:
#productMainImage {float:left;width:500px !important;position:relative;}
Hope it works! Good luck