This is just a quick post to give you the basic code to add a banner, affiliate ad or image to your affiliate store or any website.
Firstly, you'll need to locate the stylesheet file, usually style.css in your template. Then add this code block at the end of the style.css file:
#newad1 {
position:absolute;
visibility:show;
left: 20px;
top: 300px;
z-index:2
}
You'll need to come back to these setting later and adjust the numbers after left and top until the onpage position of your new ad is correct.
Next you will need to locate your store/website's main html (header.php for BANS) and add the following code:
<div id="newad1">
<a target="_blank" href="http://www.yoursitename.com/">
<img border="0" src="http://www.yourimagelocation.com/imagename.jpg" width="468" height="60" alt="alt descriptive text" title="title descriptive text"></a><br>
</div>
Replacing www.yoursitename.com with the address you want to direct the visitor to if they click on the image and replacing www.yourimagelocation.com /imagename.jpg with the location of the image to display. Also change the width and height to reflect your image and the "alt descriptive text" and the "title descriptive text" to appropriate anchor text for your site.
Once you get the image/ad showing on your site, go back to the stylesheet and adjust the values for top and left until you achieve the best location for the image/ad.
You can add any number of these image/ads, just make them unique by changing the name (i.e. newad1) in the stylesheet file and in the <div> code.