in product.tpl locate this code
Code:
<div class="details"{if $max_image_width gt 0} style="margin-left: {$max_image_width}px;"{/if}>
and replaced it with this
Code:
<div class="details"{if $max_image_width gt 0} {/if}>
in product_details.tpl added a div class "
detail-form" before <form>
Code:
.detail-form {
margin-left: 150px;
}
product_details.tpl ex:
Code:
<div class="detail-form"><form name="orderform" method="post" action="cart.php" onsubmit="javascript: return FormValidation(this);">
.............
..............
...........
</form>
</div>
Hope this helps