HTML - Form With Options Using Paypal Shoppping Cart, Any Help Would Be Greatful!
Similar TutorialsI am not sure where to post this but here goes. I am trying to find a way to use javascript (I no nothing about this) to pass to our PayPal shopping cart the right shipping and handling charge. I was told that javascript would be able to help? We are selling 3 things that all have a different price and different shipping charge. The shopping cart works if someone purchases just one item but if someone purchases multiple different items we are charging too much shipping and handling. What I would like to do is take the maximum charge of the items chosen and only charge that amount. One problem I may have is different sizes of the same item seem to take on it's own shipping and handling charge for each size. Here is an extract of my PayPal Shopping Cart html.... First Item For Sale: <input type="hidden" name="add" value="1"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="business" value="abc@123.com"> <input type="hidden" name="item_name" value="2008 Calendar"> <input type="hidden" name="amount" value="16.95"> <input type="hidden" name="shipping" value="10.00"> <input type="hidden" name="shipping2" value="2.00"> <input type="hidden" name="tax" value="1.02"><!-- this is 6% tax GST + no PST on $16.95 --> <input type="hidden" name="buyer_credit_promo_code" value=""> <input type="hidden" name="buyer_credit_product_category" value=""> <input type="hidden" name="buyer_credit_shipping_method" value=""> <input type="hidden" name="buyer_credit_user_address_change" value=""> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="CAD"> <input type="hidden" name="lc" value="CA"> <input type="hidden" name="bn" value="PP-ShopCartBF"> Second Item For Sale: <input type="hidden" name="add" value="1"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="business" value="abc@123.com"> <input type="hidden" name="item_name" value="OPC Magazine - Issue # 2"> <input type="hidden" name="amount" value="9.99"> <input type="hidden" name="shipping" value="2.00"> <input type="hidden" name="shipping2" value="1.00"> <input type="hidden" name="tax" value="0.00"><!-- no taxes on magazines --> <input type="hidden" name="buyer_credit_promo_code" value=""> <input type="hidden" name="buyer_credit_product_category" value=""> <input type="hidden" name="buyer_credit_shipping_method" value=""> <input type="hidden" name="buyer_credit_user_address_change" value=""> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="CAD"> <input type="hidden" name="lc" value="CA"> <input type="hidden" name="bn" value="PP-ShopCartBF"> Third Item For Sale - Contains 4 different sizes to choose from: <td><input type="hidden" name="on0" value="Size"> <strong>Size</strong></td> <td><select name="os0"> <option value="Medium">(M) Medium <option value="Large">(L) Large <option value="Extra Large">(XL) Extra Large <option value="Extra Extra Large">(XXL) Extra Extra Large</select> </td> </tr> <tr> <td><input type="hidden" name="on1" value="Colour"> <strong>Colour </strong></td> <td><select name="os1"> <option value="Navy Blue">Navy Blue</select> </td> </tr> </table> <p> <input type="image" src="https://www.paypal.com//en_US/i/btn/sc-but-03.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> <input type="hidden" name="add" value="1"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="business" value="abc@123.com"> <input type="hidden" name="item_name" value="OPC Golf Shirt"> <input type="hidden" name="amount" value="19.99"> <input type="hidden" name="shipping" value="11.00"> <input type="hidden" name="shipping2" value="5.00"> <input type="hidden" name="tax" value="2.80"><!-- this is 6% tax GST + 8% PST on $19.99 --> <input type="hidden" name="buyer_credit_promo_code" value=""> <input type="hidden" name="buyer_credit_product_category" value=""> <input type="hidden" name="buyer_credit_shipping_method" value=""> <input type="hidden" name="buyer_credit_user_address_change" value=""> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="return" value="http://www.outdoorphotographycanada.com/storethankyou.html"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="CAD"> <input type="hidden" name="lc" value="CA"> <input type="hidden" name="bn" value="PP-ShopCartBF"> Thank you in advance for any assistance you can provide. Dave. Very new to HTML. I have a basic "Add To Cart" button created thru PayPal's website payments standard. I want to add a 20% discount cart wide for "New Customers Only" at checkout. I have checked add variables and added discount_amount_cart=20. Still doesn't work. I have read that PayPal will not allow discounts in their shopping carts because they are not the owner of said discount. True or False?? Is this possible to do thru PayPal w/out using a third party. If not, why do they give us an option to add advanced variables. Hopefully I'm on the right track here. All help is greatly appreciated!!! This is what I have so far. The original button was set up as a "Computer Setup" service costing $60 usd, small button, encrypted, no drop down or text menus. Original code: <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="G7LXUWQLSJPBY"> <input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/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.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/scr/pixel.gif" width="1" height="1"> </form> What I have created so far. Still doesn't work. <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="G7LXUWQLSJPBY"> <input type="hidden" name="add" value="1"> <input type="hidden" name="cmd" value="discount_amount_cart"> <input type="hidden" name="item_name" value="New Customer Discount"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="discount_amount_cart" value="20"> <input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/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.paypalobjects.com/WEBSCR-640-20110401-1/en_US/i/scr/pixel.gif" width="1" height="1"> </form> with a software i created a webshop but the basket system goes to their own paysystem an i want to sent it to paypal. I attached the original html form. I found out that the function post_bsk does the job. function post_bsk(pf){ if(core.active_servers.length==0&&!tf.isSafari){setTimeout('post_bsk(d.forms["'+pf.name+'"])',100);return;} var cgis=core.active_servers; if(!cgis||cgis.length==0)cgis=['www.globecharge.com/webshop/']; pf.basket.value = tf.xml_basket; pf.regions.value= tf.xml_regions; pf.action='https://'+cgis[0]+'shoporder.cgi'; if(tf.isSafari)setTimeout('d.forms["'+pf.name+'"].submit()',500); else pf.submit(); if(window.scrollTo)window.scrollTo(0,0); var gwcontent=gl('Content'),gwlen=gwcontent.childNodes.length; for(var n=0;n<gwlen;++n){ var el=gwcontent.childNodes[n]; if(el.id=='gwframe'||!el.style)continue; el.style.display='none'; } gl('gwframe').style.display='block'; if(tf.isSafari)gl('gwframe').style.opacity=1;// Safari 3.1.2 doesn't show text when opacity is lowered. AIT type of themes will be affected by this. tf.mfh('WebSiteContent'); } Can you help me please? Thank you I have a paypal shopping cart here. However the first add to shopping cart button under the text Sparky and the Magic Garden, does not work. I've isolated the problem to this: There is no form tag around this button where as in the other buttons the form tag is there. I spotted this by looking at it in firebug. However the strange thing is is that when I look at the code in the view source then the first button is surrounded by a form tag. as in all the other buttons. This site needs to go live this Monday so if anyone could offer some advice I would be extremely grateful. hi guys, i need some help with my paypal form. I've added option fields and checkboxes but i need to add areas to insert measurements. (basically text boxes). I know how to do this with HTML but my question is: if i put these fields in, will paypal process them and then send me a copy of the orderform so i know what measurements to use? can i access the customers completed form once it is sent through paypal? or will i need to use a php code or something? (if i do does anyone know where i can find the code, maybe have you guys help me write it?) any help is MUCH appreciated, and i could use it asap. thanks a bunch. here's the order form: http://www.collegedresses.com/order.html Hey, I have a paypal form that I want to pop up in a new window when the button link is clicked on... here's the beginning of my code: <div id="layer4" style="width:200px; height:40px; position:absolute; left:109px; top:275px; z-index:1;"> <p align="center"><form method="post" action="https://www.paypal.com/cgi-bin/webscr"> any ideas???????????? hi, i have written this form however when i recieve emails from paypal reguarding the order, certain options and fields the user inputted are not appearing. I know they did not just leave them blank because I called them back and asked them. any ideas? hopefully you guys can help me as soon as possible because it sucks calling all these people back and trying to figure out what they want. thanks so much! here's the coded form: the hidden select is on top and appears when a user selects custom design... HTML Code: <a style="display:none" id="selectHidden"> <select name="on2" style="background-color:maroon; font:12px verdana; color:white;"> <option value="none">Select One</option> <option value="white">White</option> <option value="maroon">Maroon</option> <option value="black">Black</option> <option value="heather">Heather Grey</option> </select> </a> <form action="https://www.paypal.com/us/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="collegiateproductions@gmail.com"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="item_name" value="Dress"> <input type="hidden" name="amount" value="40.00"> <table> <tr> <td id="leftcell"><a href="http://www.collegedresses.com/frame.html" target="_blank">Frame:</a></td> <td id="rightcell"> <select name="on0" id="select"> <option value="none">Select One</option> <option value="aframe">A-Frame</option> <option value="strait">Strait Frame</option> </select> </td> </tr> <tr> <td id="leftcell"> <a href="http://www.collegedresses.com/custom.html" target="_blank">Custom Design:</a> </td> <td id="rightcell"> <select onchange="newOptions(this.id)" name="on1" id="on1" style="background-color:maroon; font:12px verdana; color:white;"> <option value="none">Select One</option> <option value="custom">Custom Design</option> <option value="supplied">You Supply Shirt</option> </select><br /> <a id="newSelect"></a> </td> </tr> <tr> <td id="leftcell"><a href="http://www.collegedresses.com/topdesign.html" target="_blank">Design of Top: </td> <td id="rightcell"> <select name="on3" id="select"> <option value="none">Select One</option> <option value="halter">Halter Top</option> <option value="tube">Tube Top</option> <option value="doublestrap">Double Strap</option> <option value="tshirt">T-shirt Top</option> </select> </td> </tr> <tr> <td id="leftcell">Bottom Color: </td> <td id="rightcell"> <select name="on4" id="select"> <option value="bottomwhite">White</option> <option value="bottommaroon">Maroon</option> <option value="bottomblack">Black</option> <option value="bottomheather">Heather Grey</option> </select> </td> </tr> </table> <br /> <strong>Options - All options are free of charge!</strong> <br /> <a href="http://www.collegedresses.com/options.html" target="_blank">Middle Strap:</a> <input type="checkbox" name="on5" value="Middle Strap"> <a href="http://www.collegedresses.com/options.html" target="_blank">Middle Band:</a> <input type="checkbox" name="on6" value="Middle Band"> <a href="http://www.collegedresses.com/options.html" target="_blank">T-shirt Pockets:</a> <input type="checkbox" name="on7" value="T-shirt Pockets">> <a href="http://www.collegedresses.com/options.html" target="_blank">Scrunchy Pockets:</a> <input type="checkbox" name="on8" value="Scrunchy Pockets"> <a href="http://www.collegedresses.com/options.html" target="_blank">Side Pockets:</a> <input type="checkbox" name="on9" value="Side Pockets"> <a href="http://www.collegedresses.com/options.html" target="_blank">Bottom Band:</a> <input type="checkbox" name="on10" value="Bottom Band"> <a href="http://www.collegedresses.com/options.html" target="_blank">Bottom Lace:</a> <input type="checkbox" name="on11" value="Bottom Lace"> <br /> <br /> <strong><a href="http://www.collegedresses.com/measurements.html" target="_blank">Measurements</a></strong> <br /> <table> <tr> <td id="leftcell">Bust:</td> <td id="rightcell"> <select name="on11" id="select"> <option value="none">Select One</option> <option value="bustxs">XS (28-30)</option> <option value="busts">S (31-33)</option> <option value="bustm">M (34-37)</option> <option value="bustl">L (38-40)</option> <option value="bustxl">XL (41-43)</option> </select> </select> </td> </tr> <tr> <td id="leftcell">Waist/Hip: </td> <td id="rightcell"> <select name="on12" id="select"> <option value="none">Select One</option> <option value="waistxs">XS (21-23/30-32)</option> <option value="waists">S (24-26/33-35)</option> <option value="waistm">M (27-30/36-39)</option> <option value="waistl">L (31-32/40-42)</option> <option value="waistxl">XL (33-36/43-46)</option> </select> </td> </tr> <tr> <td id="leftcell">Skirt Length: </td> <td id="rightcell"> <select name="on13" id="select"> <option value="none">Select One</option> <option value="skirtxs">XS (21)</option> <option value="skirts">S (22)</option> <option value="skirtm">M (23)</option> <option value="skirtl">L (24)</option> <option value="skirtxl">XL (25)</option> <option value="skirtother">Other (specify in Comments)</option> </select> </td> </tr> <tr> <td id="leftcell" style="vertical-align:top;">Comment Box: <br />(Please use comment <br />box to specify <br />custom design <br />or give extra <br />instructions.) </td> <td id="rightcell"> <input type="textbox" style="background-color:maroon; font:12px verdana; color:white; font-weight:bold; width:200px; height:200px;" /> </td> </tr> </table> <br /> <br /> <strong>Remember, alterations are FREE!</strong> <br /> <br /> <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="htts://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form> I REALLY appreciate all the help guys. Hi guys, Can someone please help me with what to do with my forms; I have a form built that when someone clicks submit I want a number of actions to occur: - The information they provided to be emailed to me somehow - A message to pop up saying that the form was successfully submitted. - And to redirect them back to my home page. How do I do this?? What code do I need to use?? And is there some way that I can get the filled out form emailed to me without them having to send it?? (i.e. not using "mailto") Any help here would be really appreciated. Thanks, TroubleShooter..."yeah right!" Hey, just a quick question... How would i go about using an image as a select option in a form? i know its possible as ive seen it around on a few sites before, but im not sure how to do it myself. tried the obvious: <select name="stars"> <option value="1"><img src="MYIMAGE"></option> </select> but oviously that doesnt work. any help would be greatly appreciated. Hi all, Okay here's what I want...I have an online store and I'd like to add some type of shopping cart on it..but the only issue is, I don't want there to be any "pay online" option..everything much run through the physical store...I can't find any free shopping carts which do this. Is there any way to set up a form on the "order" page and be able to check box what you'd like on other pages and have it sent to the order form when you click a button?? hope that makes sense Thanks in advance! Hi everyone, below is my Paypal html order form. Im still working on the site " http://www.rjapzdesigns.com/#/order-form/4552072670 ". And I added the 5 input fields, and when the buy now is clicked, it directs to the Paypal payment page, but the information doesn't show up in my paypalaccount email. And my site is hosted by moonfruit, and their email client works works fine. I done tuns of test runs and can't find the problem. Please help if any body know what codes are missing, or needs to be changed, It's driving me nuts... Code: <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> Company Name*:<input type="text" name="Company name" size="15"><br> Slogan: <input type="text" name="Slogan" size="15"><br> First Name*: <input type="text" name="First Name" size="15"><br> Last Name*: <input type="text" name="Last Name" size="15"><br> Email: <input type="text" name="Email" size="20"><br> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="paypalaccount@rjapzdesigns.com"> <input type="hidden" name="lc" value="US"> <input type="hidden" name="item_name" value="Camping/Hiking"> <input type="hidden" name="item_number" value="Camp1front"> <input type="hidden" name="amount" value="5.00"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="button_subtype" value="services"> <input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHosted"> <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form> Robert Hello All, I have recently founded a non-profit performing arts company (www.the roarkfaction.org). We'll be accepting members for $60 a year, payable at once or in monthly increments of $5.00. I've written this HTML code, which, paired with a simple PHP script, sends me an e-mail with details entered: <form method="post" name="myemailform" action="FormToEmail.php"> <center> <p> <label>Your Full Name:</label> <input name="name" type="text" id="SNN" size="50"><br /> <label>E-Mail Address:</label> <input name="e-mail" type="text" id="e-mail" size="51"><br /> <label>Payment Preference:</label> <input type="checkbox" name="yearly" id="yearly" /> <label for="yearly">$60 Once for One Year</label> <input type="checkbox" name="monthly" id="mointhly" /> <label for="monthly">$5 a Month, For One Year</label> <br /> <label for="paymeth">Payment Method</label> <select name="paymeth" id="paymeth"> <option value="1">Please Select One</option> <option value="cash">Cash</option> <option value="check">Check</option> <option value="cc">Credit Card</option> <option value="mo">Money Order</option> <option value="pp">PayPal</option> </select> <br /> <br /><br /> <center>Click Below to Submit Your Request</center> <center><input type="submit" name="submit" id="submit" value="Submit"> </center></form> What I'd like to do, though, is have it so if the user chooses "Credit Card" or "Paypal", upon clicking submit the e-mail is still generated, but a _blank is opened to our Paypal page. I have no idea how to do this. Any suggestions would be greatly appreciated. Regards, Samuel hi everyone, ok heres my problem that is bugging me. I have a ecommerce website that im setting up and it comes with a default search feature. Code: <form name="quick_find" action="MYDOMAIN/index.php?main_page=advanced_search_result" method="get"> <input type="hidden" name="main_page" value="advanced_search_result" /> <input type="hidden" name="search_in_description" value="1" /> <input type="text" name="keyword" size="18" maxlength="100" style="width: 103px; margin-right:5px; vertical-align:middle;" value="" onfocus="if (this.value == 'Enter search keywords here') this.value = '';" /> <input type="submit" value="Search" style="width: 50px; vertical-align:middle;" /> </form> on my site i sell music LP's and each lp has in its description the year it was released. If i was to put in the above form "1996" it would search all my products and return any that have "1996" in their desctiption. With this in mind i would like to create a form that had 4 drop down boxes. day,month,year,country I have created the following code below; Code: <form name="quick_find_header" action="MYDOMAIN/index.php?main_page=advanced_search_result" method="get"> <input type="hidden" name="main_page" value="advanced_search_result" /> <input type="hidden" name="search_in_description" value="1" /> <select name="keyword"> <option value="1952">1952</option> <option value="1953">1953</option> <option value="1954">1954</option> <option value="1955">1955</option> <option value="1956">1956</option> <option value="1957">1957</option> <option value="1958">1958</option> <option value="1959">1959</option> <option value="1960">1960</option> <option value="1961">1961</option> <option value="1962">1962</option> <option value="1963">1963</option> <option value="1964">1964</option> <option value="1965">1965</option> <option selected value="1966">1966</option> <option value="1967">1967</option> <option value="1968">1968</option> <option value="1969">1969</option> <option value="1970">1970</option> <option value="1971">1971</option> <option value="1972">1972</option> <option value="1973">1973</option> <option value="1974">1974</option> <option value="1975">1975</option> <option value="1976">1976</option> <option value="1977">1977</option> <option value="1978">1978</option> <option value="1979">1979</option> <option value="1980">1980</option> <option value="1981">1981</option> <option value="1982">1982</option> <option value="1983">1983</option> <option value="1984">1984</option> <option value="1985">1985</option> <option value="1986">1986</option> <option value="1987">1987</option> <option value="1988">1988</option> <option value="1989">1989</option> <option value="1990">1990</option> <option value="1991">1991</option> <option value="1992">1992</option> <option value="1993">1993</option> <option value="1994">1994</option> <option value="1995">1995</option> <option value="1996">1996</option> <option value="1997">1997</option> <option value="1998">1998</option> <option value="1999">1999</option> <option value="2000">2000</option> <option value="2001">2001</option> <option value="2002">2002</option> <option value="2003">2003</option> <option value="2004">2004</option> <option value="2005">2005</option> </select> <select name="keyword"> <option value="01">Jan</option> <option value="02">Feb</option> <option value="03">Mar</option> <option value="04">Apr</option> <option value="05">May</option> <option value="06">Jun</option> <option selected value="07">Jul</option> <option value="08">Aug</option> <option value="09">Sep</option> <option value="10">Oct</option> <option value="11">Nov</option> <option value="12">Dec</option> </select> <select name="keyword"> <option value="01">01</option> <option value="02">02</option> <option value="03">03</option> <option value="04">04</option> <option value="05">05</option> <option value="06">06</option> <option value="07">07</option> <option selected value="08">08</option> <option value="09">09</option> <option value="10">10</option> <option value="11">11</option> <option value="12">12</option> <option value="13">13</option> <option value="14">14</option> <option value="15">15</option> <option value="16">16</option> <option value="17">17</option> <option value="18">18</option> <option value="19">19</option> <option value="20">20</option> <option value="21">21</option> <option value="22">22</option> <option value="23">23</option> <option value="24">24</option> <option value="25">25</option> <option value="26">26</option> <option value="27">27</option> <option value="28">28</option> <option value="29">29</option> <option value="30">30</option> <option value="31">31</option> </select> <input type="image" src="includes/templates/theme013/buttons/english/button_search.gif" alt="Search" title=" Search " style="margin-left:1px;" /> </form> this gives me 3 drop down box's (YEAR,MONTH,DAY) The problem is when i click search it only searches for the year. instead of combining all the selected data (e.g. 1996+JUN+23) it just searched for 1996. The second problem is if someone managed to get this form to work, would it search for "1996JUN23" or "1996 JUN 23". The reason i ask this is my products descriptions say "this single was released on 23 June 1996" I hope ive made all the above clear!! Any help would be greatly appreciated. thanks in advance Hi, Yesterday, I wasted a couple hours trying to center the Paypal button inside a form inside a table. You can see it near the bottom of this page: http://www.jesussaidfollowme.org/new...t-theology.htm Do you know how to solve my puzzle? Thank you, Greg I would like to know how to create a mini form of two pull down boxes so that when the two selections have been made and submitted it returns back a designated page or picture. For example I want to build a simple method to show routes of an office building. Pulldown box 1 would be the office number you want to start from, and pulldown box two would be the office you want to get to. when you click submit it would pull up either a page or picture which contains the corrrect floor plan and route. I feel like this should not be too hard as I don't need anything very flashy. I just don't know how to start it. If anyone knows of something open source already created to do this I would be open to that too. Thanks in advance for any assistence you can give. ello everyone. I'm looking for a new way to display information effectively and neatly on my website. I have looked into tables ( which I am not a fan of ), also Javascript displaying clickable tabs allowing information to be displayed when tabs are clicked. My website is animal related so i need to be able to display somewhat like shown below; Does anyone have any other ideas of how I could display this information without making my website look rubbish? Thanks Jake Hi All, I would like to create a drop down box that contains number 1-50. I know I can do this using the following <option value="1">1</option> <option value="2">2</option> Can someone tell me a method for doing his a better way rather than having 50 option values? p.s is the speaking advert at the bottom of this forum the most annoying thing ever. Does nothing for me as a new site visitors other than make me want to leave. I have turned the sound off now but its real pants. Thanks all Kind Regards wedmonds I have a menu bar, viewable at http://muskmagazine.com/february/index.html, where I want some columns not to have a hyperlink but to keep the default cursor. I have tried not including the href but this then changes the cursor from default. Not being to savvy with HTML I could do with some help. Thanks Justin Sample menu code: <li><a href="#">about us</a> <ul> <li><a href="pressrelease.html">press releases</a> <li><a href="letterstoeditor.html">letters to the editor</a> <li><a href="newsletter.html">newsletter</a> <li><a href="contact.html">contact</a> <li><a href="aboutus.html">mission statement</a> </ul> </li> css code: http://muskmagazine.com/february/menu/fsmenu.css just wondering if anyone knows how to make - where to get a paypal widget, this is for a Clan so its a non profit thing, was hoping to have a per month total it costs, then a bar showing how much has been put in and a donate button i found one he http://bfm.enjin.com/ thanks in advance for your help Hey All! I didnt know which forum to post this into but i thought i would try here first!! Firstly, i am pretty new to website design, secondly i need to work out how twork with paypal on a site i have created! I have a site that sells online raffle tickets for several competiitions and i need these sales to be done online via paypal!! How do i go about doing this?! Does anyone know any good tutorial sites that will help? Any information will be really appreciated! Many thanks Matt |