Announcement

Collapse
No announcement yet.

need help

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

  • 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
    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!

    Comment


    • #3
      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

      Comment

      Working...
      X