Announcement

Collapse
No announcement yet.

Help Required how to put boxes around products.

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

    Help Required how to put boxes around products.

    Can anyone help with how to enable product boxes around the products? Is it a setting which I have missed or does it require coding? If so where would I find the code?
    Regards Gazza

    #2
    This will require some hand coding. The problem is that all products and fragments are set out in a common 3 column table, using one or two rows per product. If you edit Act_ProductBody.html, you'll see the line

    <TABLE WIDTH="500" COLS="3" BORDER="0" CELLPADDING="10" CELLSPACING="0" ALIGN="CENTER">

    try temporarily changing to BORDER="1" will let you see what's happening.

    Now the way to go about this is to edit Act_ProductLine.html and replace the initial <tr> and final </tr> with
    Code:
    <tr>
     <td colspan=3>
      <table width="100%" border=1>
       <tr>
    .
    .
       </tr>
      </table>
     </td>
    </tr>
    and you'll probably want to use CSS instead of the border=1 above.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment

    Working...
    X