Sorry, but you weren't completely clear in what you wanted. Do you want to have one specific ad banner (being "static"?) in each area on your site? If so why don't you just use html to add the images in?
e.g. <img src="/images/ad1.jpg">
Then, if you wanted to change the ad displayed later you'd just upload another banner with the same name.
Another alternative would be to use iframes, which is, in essence, like embedding a second webpage within the first.
Your code would look something like:
<IFRAME src="adbanner.html" width="400" height="500" frameborder="1">
[Your web browser doesn't support iframes...lucky you!]
</IFRAME>
Then you'd just make adbanner.html with the add you wanted it. Or you could iframe to a php document if you wanted it to randomly display an ad.
Hope that was helpful. If not, please try and clearify your question.
Reply