Results 1 to 5 of 5

Thread: Paypal button code
      
   

  1. #1
    jeniferlk23 is offline Private First Class
    Join Date
    Jul 2010
    Location
    Adelaide, SA
    Posts
    8

    Default Paypal button code

    Hi- can someone tell me the code to change the colour (and maybe font?) of the text for my drop down list on my add to cart button?

    This is the code:
    <tr><td><input type="hidden" name="on0" value="Select your quantity">Select your quantity</td></tr><tr><td><select name="os0">

    I want the words 'select your quantity' to be white instead of black and if possible to be garamond font.

    Thank you,
    Jen

    vodahost account is thehalmans.com

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

    Default Re: Paypal button code

    Not sure why you are handcoding this. Not even sure why you are using tables. Last, the code here is not the part related to the select dropdown, but to the hidden field on0 (name of the option). Also, Garamong is not websafe.


    This code should be as follows:

    <tr><td><input type="hidden" name="on0" value="quantity">Select your quantity</td></tr>
    <tr>
    <td
    <div style="width:184px;height:18px;border:1px #C0C0C0">
    <select name="os0" size="1" id="os0" style="width:100%;height:100%;border-width:0px;background-color:#000000;color:#FFFFFF;font-family:Verdana;font-size:13px;">
    <option value="option1">option1</option>
    <option value="option2">option2</option>
    <option value="option3">option3</option>
    </select>
    </div>
    </td>
    ..... etc
    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
    jeniferlk23 is offline Private First Class
    Join Date
    Jul 2010
    Location
    Adelaide, SA
    Posts
    8

    Default Re: Paypal button code

    Thank you -

    That was the code directly from the the paypal button (from paypal not BV) so I didn't hand code it with tables... ?

    When I changed the page properties to white garamond text it changed it for my drop down menu as well so I don't know if that is going to work?

    I have to make about 150 buttons with 11 drop down options on each button so I had to enter hand enter the additional option lines in BV after I made the paypal button but do you know if there is any way to cut and paste the code in BV and change the item name?

    I can't use the BV paypal buttons because the add combo box doesn't work according to one of your previous posts...

    this is turning into a nightmare for me so any help speeding this up is appreciated.

    one of the pages I've started on is http://madebymeeya.com.au/birth_announcements.php

    Cheers
    Jen

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

    Default Re: Paypal button code

    It seems that PayPal will not accept additional options handcoded.
    Your own dropdown doesn't pass (from what I see) the correct values to PayPal, neither as text (for the option) or as value (for the amount)

    There is a solution for this, but is rather complicated, I'll see if I find the time to create a sample for you which you can then customize as required.
    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!


  5. #5
    jeniferlk23 is offline Private First Class
    Join Date
    Jul 2010
    Location
    Adelaide, SA
    Posts
    8

    Default Re: Paypal button code

    thanks for catching that - i thought when i tested it it was working!

    i'm removing all the additional options and I will just have to put the envelopes in a separate place so don't worry about another solution.

    for future use can BV fix their own paypal buttons so the combo box can be used?? I do quite a few sites a month but won't use BV anymore if I can't do easy e-commerce.

    thank you very much for your help

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