Please Help Me

Discussion in 'HTML & Website Design' started by leon2007, Jun 17, 2008.

  1. #1
    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?
     
    leon2007, Jun 17, 2008 IP
  2. rchamberlin

    rchamberlin Peon

    Messages:
    81
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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):
     
    rchamberlin, Jun 17, 2008 IP
  3. leon2007

    leon2007 Peon

    Messages:
    145
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thank you So Much, I really appreciate it:) How do I copy the table?
     
    leon2007, Jun 17, 2008 IP
  4. rchamberlin

    rchamberlin Peon

    Messages:
    81
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    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.
     
    rchamberlin, Jun 17, 2008 IP
  5. leon2007

    leon2007 Peon

    Messages:
    145
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #5
    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?
     
    leon2007, Jun 17, 2008 IP
  6. rchamberlin

    rchamberlin Peon

    Messages:
    81
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #6
    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.
     
    rchamberlin, Jun 17, 2008 IP
  7. leon2007

    leon2007 Peon

    Messages:
    145
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Its working now. Thank you so much:)
     
    leon2007, Jun 17, 2008 IP