Results 1 to 3 of 3

Thread: need help
      
   

  1. #1
    keetch is offline Private
    Join Date
    Mar 2010
    Posts
    3

    Default need help

    my code is posted at the bottom, when viewed it shows it all aligned in a row as quantity, size, color, how can i change the code so quantity is the the left, to the right of that is size and aligned under size is color? so i want it to look like this: quantity on left, beside that size and under size is color

    thanks
    Sue


    <br>Quantity: <input type="text" name="quantity" size="4">
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="9S35QMLYLTQJY">
    <table>
    <tr><td><input type="hidden" name="on0" value="Colors">Colors</td></tr><tr><td><select name="os0">
    <option value="White">White </option>
    <option value="Ash">Ash </option>
    <option value="Sport Grey">Sport Grey </option>
    <option value="Black">Black </option>
    <option value="Navy">Navy </option>
    <option value="Red">Red </option>
    <option value="Royal Blue">Royal Blue </option>
    <option value="Light Pink">Light Pink </option>
    </select> </td></tr>
    <tr><td><input type="hidden" name="on1" value="Size">Size</td></tr><tr><td><select name="os1">
    <option value="Xtra Small">Xtra Small </option>
    <option value="Small">Small </option>
    <option value="Medium">Medium </option>
    <option value="Large">Large </option>
    <option value="Xtra Large">Xtra Large </option>
    </select> </td></tr>
    </table>
    <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </form>

  2. #2
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: need help

    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="9S35QMLYLTQJY">
    <input type="hidden" name="on1" value="Size">
    <input type="hidden" name="on0" value="Colors">
    <table>
    <tr>
    <td>Quantity: </td>
    <td><input type="text" name="quantity" size="4"> </td>
    <td>Size:</td>
    <td><select name="os1">
    <option value="Xtra Small">Xtra Small </option>
    <option value="Small">Small </option>
    <option value="Medium">Medium </option>
    <option value="Large">Large </option>
    <option value="Xtra Large">Xtra Large </option>
    </select> </td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>Colors:</td>
    <td><select name="os0">
    <option value="White">White </option>
    <option value="Ash">Ash </option>
    <option value="Sport Grey">Sport Grey </option>
    <option value="Black">Black </option>
    <option value="Navy">Navy </option>
    <option value="Red">Red </option>
    <option value="Royal Blue">Royal Blue </option>
    <option value="Light Pink">Light Pink </option>
    </select> </td>
    </tr>
    <tr>
    <td align="center" colspan="4"><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
    <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
    </td>
    </tr>
    </table>
    </form>
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  3. #3
    keetch is offline Private
    Join Date
    Mar 2010
    Posts
    3

    Default Re: need help

    thank you thank you thank you lol, one more thing, what is the code specific to the command to have it on the left as i have many more buttons to edit now
    again, thanks
    sue

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49