Announcement

Collapse
No announcement yet.

table spacing

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

    table spacing

    I like to reduce the spacing between the tables to 5 mm.

    please click here to see

    http://myjavaco.com/test.html

    what do i have to do to achive this? step by step please.
    thanks.

    #2
    It looks like there is some crud left over between each product that you need to get rid of.

    You have the following code above the first product...

    Code:
    <TABLE WIDTH="500" COLS="3" BORDER="0" CELLPADDING="10" CELLSPACING="0" ALIGN="CENTER">
    <tr>
        <td rowspan="2" valign="TOP" align="CENTER"> <Actinic:TEMPLATE type="begin" filename="rce v6\Sites\Site1\Act_ProductLine.html"/>
     </td>
      <td valign="TOP" align="LEFT">      <br>      
      </td>
    </tr>
      <tr>
        <td align="LEFT">    </td>
    </tr>
    
    <tr>
        <td rowspan="2" valign="TOP" align="CENTER"> <Actinic:TEMPLATE type="begin" filename="rce v6\Sites\Site1\Act_ProductLine.html"/>
     </td>
      <td valign="TOP" align="LEFT">            
      </td>
    </tr>
      <tr>
        <td align="LEFT"><span class="actxsmall">			<Actinic:ACTIONS></Actinic:ACTIONS></span>
    and then this code between each product

    Code:
    </td>
    </tr>
    
    <tr>
        <td rowspan="2" valign="TOP" align="CENTER"> <Actinic:TEMPLATE type="begin" filename="rce v6\Sites\Site1\Act_ProductLine.html"/>
     </td>
      <td valign="TOP" align="LEFT">      <br>      
      </td>
    </tr>
      <tr>
        <td align="LEFT"><span class="actxsmall">			<Actinic:ACTIONS></Actinic:ACTIONS></span>
    Suggestions for fixing...?

    Get rid of the code before NETQUOTEVAR:PRODUCTBULK in Act_ProductBody that says:

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

    and get rid of the </TABLE> tag after after NETQUOTEVAR:PRODUCTBULK .

    THen in Act_ProductLine, get rid of all the code above the

    <TABLE WIDTH="500" COLS="3" BORDER="0" CELLPADDING="10" CELLSPACING="0" height="233">

    tag, and get rid of all the code after the corresponding </TABLE> tag at the end.

    Make sure you leave NETQUOTEVAR:PRODUCTFORMBEGIN and NETQUOTEVAR:ENDSEPARATOR at the beginning of the template, and leave NETQUOTEVAR:PRODUCTFORMEND and NETQUOTEVAR:NEXT at the end.

    Comment

    Working...
    X