OK, I know this is a really stupid question, but...
A few years ago I set up random banners on a forum, top and bottom of all pages. Here it is:
http://www.horseshoes.com/forums
There are 15 banners in that rotation.
For the life of me I can't recall where I got that plug-in, and in searching, discovered yours.
(I've read every post in this thread!)
Regarding random banners, you posted this code:
<script language="javascript" type="text/javascript">
<!--
function banner() {
};
banner = new banner();
number = 0;
// bannerArray
banner[number++] = "<a href='http://www.yoursite1.com' target='_blank'><img src='/banners/image1.jpg' alt='' border='0' /></a>"
banner[number++] = "<a href='http://www.yoursite2.com' target='_blank'><img src='/banners/image2.jpg' alt='' border='0' /></a>"
banner[number++] = "<a href='http://www.yoursite3.com' target='_blank'><img src='/banners/image3.jpg' alt='' border='0' /></a>"
// keep adding items above here...
increment = Math.floor(Math.random() * number);
document.write(banner[increment]);
//-->
</script>
When you posted this code, you said it could be pasted in the HTML area of any forum template page. Ummmm.... what does that mean? How do I know where the HTML area is? (Lord, I feel stupid.....)
Where would I put this code to achieve the same top and bottom placement I have in the forums referenced above? (I'm using version 3.6)
To demonstrtae I'm not a total idiot, here's what the current banner plug-in looks like in the Control Panel:
Thank you.