Support forum login

©2006-2012 IAAI Software

Contact Us Privacy Policy

Fixed product image position

Submitted by kiruha21 on Sat, 2010-05-08 17:38.

Now that I know how to add custom product descriptions, I am wondering how do I fix product image in the left top corner. If there is a lot of description info, product image slides down and is centered on left side in respect to the description. I want to keep the image always in the top left corner.

I hope my problem is clear.

Thank for help in advance!

Kirill

Submitted by support on Sat, 2010-05-08 17:45.

Hi Krill,

No problem; in the default html/product.php, you will find the <td> tag where the table cell containing the image is created on line 5 as follows:

      <td width='200'>

If you REPLACE that with:

      <td width='200' valign='top'>

...that should align the product image with the top of the description.

Cheers,
David.

Submitted by kiruha21 on Sat, 2010-05-08 18:45.

Thanks, worked!