Announcement

Collapse
No announcement yet.

Getting QTY and Add to cart on same line

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

    Getting QTY and Add to cart on same line

    I have having trouble getting the Add to Cart button to come up to the same line as the QTY box. What is the easiest way to make this happen?

    I see the NETQUOTEVAR:PRODUCTQUANTITY and NETQUOTEVAR:ADDTOCARTBUTTON but there are no linebreaks or paragraph calls between them.

    [ code ]
    <td align="LEFT" colspan="3">
    NETQUOTEVAR:CARTERRORXMLNETQUOTEVAR:PRODUCT QUANTITY
    <Actinic:ACTIONS>NETQUOTEVAR:ADDTOCARTBUTTON</ Actinic:ACTIONS>
    </span>

    [ /code ]

    Thanks,

    Jonathan

    #2
    Hi,

    I've found the easiest way is to put them in their own table cells. I did the following:

    <TD COLSPAN="2" ALIGN=LEFT>
    <table border="0" cellpadding="0">
    <tr>
    <td valign="bottom">
    <FONT FACE=ARIAL SIZE=-1>
    NETQUOTEVAR:CARTERRORXMLNETQUOTEVAR:PRODUCTQUANTITY</td>
    <td valign="bottom"><Actinic:ACTIONS>NETQUOTEVAR:ADDTOCARTBUTTON</Actinic:ACTIONS>
    </FONT>NETQUOTEVAR:TEMPLATEENDXML</td></tr></table>
    </TD>

    (The above might be slightly different to what you have depending on the theme you are using for your site).
    ********************
    Tracey
    SellerDeck

    Comment


      #3
      Thanks Tracy, I thought about this last night after I posted and went to bed. I am new to HTML, web layout, etc etc. I appreciate all the helpful people on this board, I try to figure it out on my own first, read the user guides, search the board, etc so to try and NOT ruin my welcome out

      Thanks for the code, I will use it and try to modify it accordingly.

      Comment

      Working...
      X