Announcement

Collapse
No announcement yet.

Adding a table next to product image

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Adding a table next to product image

    Hi I know nothing about HTML and I am trying to incorporate a table displaying colour choices on the product pages next to an image. take a look at www.shire-embroidery.co.uk/adult_polo.htm
    or hopefully there is an attachment.
    I know which lines of code make up the table on my current website but I do not know where to put them in the template

    Any help?

    Cheers

    Paul
    Attached Files

    #2
    Go to 'Design | Options | Layouts' and click 'Edit' next to the 'Default Product Layout' field. That is your product layout template (normally called Act_ProductLine) which lays out your products by default.

    I would save it under a new filename and then made the following changes:

    Look for the line...

    <td valign="TOP" align="LEFT" colspan="2">

    change it to read...

    <td valign="TOP" align="LEFT">

    Then look for where it says...
    Code:
        </td>
      </tr>
      <tr>
    Change this to read:
    Code:
        </td>
        <td valign="top">
        ...
        </td>
      </tr>
      <tr>
    Where the '...' is, add your table code in. If you also move 'NETQUOTEVAR:PRODUCTPRICE' to be under your custom table code, then the price will appear in a similar place to where you have it on the URL you quoted.

    Comment


      #3
      Thanks for that boss man I'll give it a try

      Comment

      Working...
      X