Announcement

Collapse
No announcement yet.

Placing borders around Products

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

    Placing borders around Products

    Is it possible to place a border around products. So that it's easier to distinguish between products.

    Thanks

    Elfyn

    #2
    You can -edit Act_productbody.html. Find the line which sets up the table (starts with <Table, and add 'Border="1", for example it may look like this:
    <TABLE WIDTH="100%" COLS="3" BORDER="1" CELLPADDING="5" CELLSPACING="0" ALIGN="CENTRE">

    Hope this helps?

    Lee
    Lee Owen
    Web Design | Illustration | 3D
    kcbdesign@tiscali.co.uk

    Comment


      #3
      If Lee's suggestion adds too many borders (inside the product details) then try this:-

      Edit your Product Template(s) - usually Act_ProductLine.html

      Code:
      immediately after all instances of NETQUOTEVAR:PRODUCTFORMBEGIN add the 2 lines
      
      <tr><td width=100%><table width=100% border=1><tr><td>
      <TABLE WIDTH="500" COLS="3" BORDER="0" CELLPADDING="10" CELLSPACING="0" ALIGN="CENTER">
      
      
      immediately above  all instances of NETQUOTEVAR:PRODUCTFORMEND add the line
      
      </table></td></tr></table></td></tr>
      
      You may also want to comment out the separator line e.g.
      
      <!-- NETQUOTEVAR:INCLUDE Act_ProductSeparator.html -->
      The fragment "<table width=100% border=1>" does the border so you may want to tinker there with CSS styles, etc.

      For example using "<table width=100% bgcolor="#ccddff">" instead will set your product in a pretty blue box.

      Norman
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment

      Working...
      X