how do i get paypal to work?

Discussion in 'HTML & Website Design' started by greasesicle, Jul 5, 2007.

  1. #1
    www.seattlesupersellouts.com-paypal button shows crammed in the corner-I pasted the html for button and view carton-is the tiled image overlapping?
     
    greasesicle, Jul 5, 2007 IP
  2. ajsa52

    ajsa52 Well-Known Member

    Messages:
    3,426
    Likes Received:
    125
    Best Answers:
    0
    Trophy Points:
    160
    #2
    On seattlesupersellouts.com I only see a background image :confused:
     
    ajsa52, Jul 5, 2007 IP
  3. Aztral

    Aztral Well-Known Member

    Messages:
    344
    Likes Received:
    15
    Best Answers:
    0
    Trophy Points:
    125
    #3
    looks like you may have some z-index issues. i just see tiled background as well.
     
    Aztral, Jul 5, 2007 IP
  4. ajsa52

    ajsa52 Well-Known Member

    Messages:
    3,426
    Likes Received:
    125
    Best Answers:
    0
    Trophy Points:
    160
    #4
    No there's no z-index issues because their code is:
    
    <html>
    <head>
    <title>WELCOME TO SEATTLESUPERSELLOUTS.COM
    </title>
    </head>
    <body background="seattle_sellouts.jpg">
    </body>
    </html>
    
    HTML:
     
    ajsa52, Jul 5, 2007 IP
  5. greasesicle

    greasesicle Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    how do i set up this code clean?-I want the paypal to be more visible, and not overlapping the logos-email address is fictitious here. is there a way to exclude one of the tiles in the corner for the paypal icon and t shirt images?
    <html>
    <head>
    <title>WELCOME TO SEATTLESUPERSELLOUTS.COM
    </title>
    </head>
    <body background="seattle_sellouts.jpg">
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="image" src="https://www.paypal.com//en_US/i/btn/sc-but-01.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="asesicle@yahoo.com">
    <input type="hidden" name="item_name" value="Sellout T's">
    <input type="hidden" name="amount" value="7.50">
    <input type="hidden" name="no_shipping" value="0">
    <input type="hidden" name="no_note" value="1">
    <input type="hidden" name="currency_code" value="USD">
    <input type="hidden" name="lc" value="US">
    <input type="hidden" name="bn" value="PP-ShopCartBF">
    </form>
    <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_cart">
    <input type="hidden" name="business" value="asesicle@yahoo.com">
    <input type="image" src="https://www.paypal.com/en_US/i/btn/view_cart.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
    <input type="hidden" name="display" value="1">
    </form>
    </body>
    </html>
     
    greasesicle, Jul 6, 2007 IP
  6. greasesicle

    greasesicle Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    how do i set up this code clean?-I want the paypal to be more visible, and not overlapping the logos-email address is fictitious here. is there a way to exclude one of the tiles in the corner for the paypal icon and t shirt images?
     
    greasesicle, Jul 7, 2007 IP
  7. redofthelost

    redofthelost Guest

    Messages:
    38
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    You could put a div on top of your background and make it white, which would cover one of the "tiles". I think thats what your asking for...

    Insert this in the head section between <head> and </head>
    <style type="text/css">
    <!--
    #exclude {
    position:absolute;
    left:0px;
    top:0px;
    width:100px;
    height:100px;
    z-index:1;
    background-color: #FFFFFF;
    }
    -->
    </style>


    Then in the body section in between <body> and </body>:
    <div id="exclude"></div>
    There probably is an easier way to do it, but thats how i'd do it =/ Though that might cover your paypal link too... lol you'd have to make a seperate div for that which you would put on top of the white one.
     
    redofthelost, Jul 7, 2007 IP
  8. greasesicle

    greasesicle Peon

    Messages:
    6
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    i pasted the style sheet and <div id="exclude"></div> check it out. do i need to add a size with in <div id="exclude"></div>?-Mark
     
    greasesicle, Jul 8, 2007 IP
  9. XpIndia.Com

    XpIndia.Com Peon

    Messages:
    9
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Try a form. Put it in <center> ...... </center>
     
    XpIndia.Com, Jul 9, 2007 IP