PDA

View Full Version : Product price grid / table


sarahj
07-May-2004, 08:54 AM
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:confused:

cdicken
10-May-2004, 08:54 AM
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:!!<
<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.

sarahj
10-May-2004, 09:29 AM
Thanks Chris

I'll give it a go!

Sarah