Hi, I am new to HTML and I need some help regarding the same. I have just started to sell my first e-book through clickbank and wanted to put up some banners on my affiliate section but when I use my HTML code it becomes an image. How do I save it in text form so that my affiliates could copy and paste it on their site?
Wrap your code in pre tags or put it in a form element like a textarea. Examples: <pre> <a href="http://yourURL.com"><img src="yourimage.jpg" /></a> </pre> Code (markup): or <textarea columns="3" rows="3"> <a href="http://yourURL.com"><img src="yourimage.jpg" /></a> </textarea> Code (markup):
I'm not sure what you're asking. Do you have an example? If you don't want to post it here you can PM me and I'll take a look.
Its not working. This is the code- <div id="adverstore"><a href="http://www.adverstore.com/link/?nurl=http://AFFILIATE.leon2007.hop.clickbank.net"><img src="http://www.adverstore.com/ads/219395/AdverStore.nukwa8.gif" alt="Create a professional banner in five minutes at AdverStore.com!" style="border: 0;" /></a></div> I added pre but it didn't work. Is the table required?
Using the textarea will definitely work. Try this: <div id="adverstore"> <textarea columns="3" rows="3"> <a href="http://www.adverstore.com/link/?nurl=http://AFFILIATE.leon2007.hop.clickbank.net"><img src="http://www.adverstore.com/ads/219395/AdverStore.nukwa8.gif" alt="Create a professional banner in five minutes at AdverStore.com!" style="border: 0;" /></a> </textarea> </div> Code (markup): You might have to adjust the number of columns & rows to fit the look of your site.