Announcement

Collapse
No announcement yet.

Product price grid / table

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

    Product price grid / table

    Hi

    I'm trying to set up a grid which illustrates product prices (like a matrix). I'm using template 'No image or description. Laid out in single line', with a thumbnail view of an image then click to Extended Information. I wanted the pricing table to sit alongside the thumbnail, with decimal tabbing etc. Can this be done?

    Thanks.
    Sarah

    #2
    If I need to put a pricing table into my products, I tend to just use the full description field and use embedded HTML (start with !!< and finish with >!! to add the table code in there.

    Here's an example:
    Code:
    !!<
    <table width="100%" border="1" cellspacing="0" cellpadding="0">
      <tr>
        <td>Price:</td>
        <td align="right">&pound;10.00</td>
      </tr>
      <tr>
        <td>Price:</td>
        <td align="right">&pound;7.50</td>
      </tr>
    </table>
    >!!
    You would need to update it manually - but it would work. Hope that helps.

    Comment


      #3
      Price Table

      Thanks Chris

      I'll give it a go!

      Sarah

      Comment

      Working...
      X