Re: Heres a review (of one of MARTIN'S products)...
Hi Marty....in case you wish to replace the paypal link on your pizza card blog with a Buy button, here's the code.
Simply place the following in the <head> section of your page:
<style>
a.buy, {
font: 12px 'Lucida Grande', 'Lucida Sans Unicode', 'Verdana', 'sans-serif';
display: block;
margin: 6px auto;
width: 200px;
border: solid 1px #333333;
padding: 10px 20px;
font-size: 40px;
font-weight: bold;
color: white;
text-decoration: none;
text-transform: uppercase;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
background: #880000;
background-image: -moz-linear-gradient(100% 100% 90deg, #880000, #cc0000);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#cc0000), to(#880000));
box-shadow: 1px 1px 4px #333333;
-webkit-box-shadow: 1px 1px 4px #333333;
-moz-box-shadow: 1px 1px 4px #333333;
text-shadow: -1px -1px 0px #333333;
}
</style>
And wrap your paypal link in the following code:
<a class='buy' href='ENTER PAYPAL LINK HERE STARTING WITH https://www.paypal.com'>Buy Now</a>
-Samir
|