How to add an Amazon Buy Now Button to open in a new window

bihguy

Power Member
Joined
Jan 1, 2013
Messages
566
Reaction score
186
I read a lot about the amazon affiliate program and I noticed that you can get more sales if you use an amazon buy now button.
My question is how to add an amazon buy now button that opens in a new window. I mean the html, I know the one that will open it in the same window.

This code opens it in the same window, I want a code that will open it in a new window.
Code:
[LIST]
[*][COLOR=grey]<a href="product_affiliate_link"><img src="https://images-na.ssl-images-amazon.com/images/G/01/associates/remote-buy-box/buy1._V192207739_.gif" /></a>[/COLOR]
[/LIST]

Thanks
 
Hello.

You're missing the argument: TARGET="_blank"

So, it should be like:


<a href="product_affiliate_link" TARGET="_blank"><img src="https://images-na.ssl-images-amazon.com/images/G/01/associates/remote-buy-box/buy1._V192207739_.gif" /></a>

Good luck.
 
Thank you Shirko.
 
Back
Top