Quote:
Originally Posted by Champster
I'm getting red x marks on my forum for banners. I input all of the pertinent information in the HTML Code section of the Admin CP but I'm having no success. The link I am working with is simliar to the one below. I'm using this link b/c I am an affiliate to a website where I am compensated for the revenue the ad generates
<a href="http://signup.yoursite.com/track/MjczNjo1OjIx/" target=""><img src="468x100_3.jpg" width="468" height="100" border=0></a>
Please advise. Thanks.
|
Hello,
In bold:
Code:
<a href="http://signup.yoursite.com/track/MjczNjo1OjIx/" target=""><img src="468x100_3.jpg" width="468" height="100" border=0></a>
The image you wish to show should be in the "root" folder of your forums according to the code you have.
If you have your banners in a "banners" folder on the server try this:
Code:
<a href="http://signup.yoursite.com/track/MjczNjo1OjIx/" target=""><img src="/banners/468x100_3.jpg" width="468" height="100" border=0></a>
or
Code:
<a href="http://signup.yoursite.com/track/MjczNjo1OjIx/" target=""><img src="http://www.yoursite.com/banners/468x100_3.jpg" width="468" height="100" border=0></a>
Fill in the URL of the banners on your server.