www.seattlesupersellouts.com-paypal button shows crammed in the corner-I pasted the html for button and view carton-is the tiled image overlapping?
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:
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>
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?
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.
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