Announcement

Collapse
No announcement yet.

removing extra space from productline3

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

    removing extra space from productline3

    I have been modifying the productline3 html to get my product info in a format I like (I have a large number of items on one screen with no images, so want them squashed together), but there are a few extra spaces I can't seem to get rid of...

    Basically on the left side is the product name on line 1, with the description underneath on line 2.

    In the right column though, the price is on line 2, when I want it to be on line one next to the product name.

    Also, the qty and extended button are at least 2 lines below the price.

    Any ideas one where these extra lines are creaping in? Here's the code -


    <!-- ProductLine3 HTML begin -->
    <!-- Insert HTML for the top of the individual product -->
    NETQUOTEVAR:INCLUDE Act_ProductSeparator.html
    NETQUOTEVAR:ENDSEPARATOR
    NETQUOTEVAR:PRODUCTFORMBEGIN
    <tr>
    <td rowspan="2" valign="TOP" align="LEFT">
    NETQUOTEVAR:TEMPLATEBEGINXML
    <a name="NETQUOTEVAR:PRODUCTANCHOR"><span class="actregular"><b>NETQUOTEVAR:PRODUCTNAME</b></span></a>
    <br><span class="actxsmall">NETQUOTEVAR:PRODUCTREF
    NETQUOTEVAR:PRODUCTDESCRIPTION</span>
    </td>

    <td colspan="2" valign="TOP" align="LEFT">
    <span class="actsmall">
    <b>NETQUOTEVAR:PRODUCTPRICE</b>
    NETQUOTEVAR:OTHERINFOPROMPT
    NETQUOTEVARATEPROMPT
    </span>
    </td>
    </tr>
    <tr>
    <td colspan="2" valign="TOP" align="LEFT">
    <span class="actxsmall">
    NETQUOTEVAR:CARTERRORXMLNETQUOTEVAR:PRODUCTQUANTITY
    NETQUOTEVAR:EXTINFOLINKNETQUOTEVAR:EXTINFOBUTTON
    <Actinic:ACTIONS>NETQUOTEVAR:ADDTOCARTBUTTON</Actinic:ACTIONS>
    </span>
    NETQUOTEVAR:TEMPLATEENDXML
    </td>
    </tr>

    NETQUOTEVAR:PRODUCTFORMEND
    NETQUOTEVAR:NEXT
    <!-- ProductLine3 HTML end -->
    John

    #2
    If you take a look within the Product Price template (Advanced | Section | Price), you should find the extra BR tag in there, but what ever you change within that template will affect all of the product prices throughout the site.

    Comment

    Working...
    X