How do I replace the image button with a text button?
The PayPal button generator creates a button with an image downloaded from the PayPal system. There may be times you do not want this image button. If so locate the code that is similar to the following:
<input type="image"
src="https://www.paypal.com/en_US/i/btn/btn_cart_LG.gif"
border="0" name="submit"
alt="Make payments with PayPal - it's fast, free and secure!">
And replace it with this line. You can use your own text in place of the YourTextHere.
<input type="submit" value="YourTextHere">