0

My paypal form is:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
           <input type="hidden" name="currency_code" value="GBP">
             <input type="hidden" name="hosted_button_id" value="BZDFVPOK8XKQ">
<input type="hidden" name="on0" value="Size">
                  <input type="hidden" name="cmd" value="_s-xclick">
            <select name="os0">
                    <option>Please Select</option>
                      <option value="small">small</option>
                      <option value="medium">medium</option>
                      <option value="large">large</option>

                </select>
          <input type="image" src="images/buyitnow.png"  style="width:100px; height:30px; padd" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
            </form>

I want to change the drop down menu into 3 images S, M, L so the user can select an image instead of having to select from dropdown. is this possible

1 Answers1

0

It seems you need radio buttons instead of a drop down menu !

Use CSS to display each radio button as an image. You might need some javascript too.


Try this plugin http://www.thheuer.com/2011/10/jquery-plugins-image-radio-buttons/

user1661286
  • 133
  • 1
  • 3
  • 12