Log in

View Full Version : Rotating Banner?


ps2wiz
09-07-2009, 07:30 PM
I have about 7 different banners that I would like to use, I simply want a different banner to load for the user every time they visit the forum.

Is there a mod for this?

Thanks in advance.

Lynne
09-07-2009, 08:28 PM
Search on "banner*" or "rotat*" in "all mods" "titles only"

Markos
09-07-2009, 08:53 PM
this is what i use

<!-- Banner Rotator -->
<td class="alt1">
<SCRIPT LANGUAGE="Javascript"><!--
function banner() {
};
banner = new banner();
number = 0;
// bannerArray
banner[number++] = "<a href='http://www.link here.co.uk' target='_blank'><img src='http://image lin here.co.uk' border='1'></a>"
banner[number++] = "<a href='http://www.link here.co.uk' target='_blank'><img src='http://image lin here.co.uk' border='1'></a>"
banner[number++] = "<a href='http://www.link here.co.uk' target='_blank'><img src='http://image lin here.co.uk' border='1'></a>"
banner[number++] = "<a href='http://www.link here.co.uk' target='_blank'><img src='http://image lin here.co.uk' border='1'></a>"
banner[number++] = "<a href='http://www.link here.co.uk' target='_blank'><img src='http://image lin here.co.uk' border='1'></a>"
banner[number++] = "<a href='http://www.link here.co.uk' target='_blank'><img src='http://image lin here.co.uk' border='1'></a>"
banner[number++] = "<a href='http://www.link here.co.uk' target='_blank'><img src='http://image lin here.co.uk' border='1'></a>"
banner[number++] = "<a href='http://www.link here.co.uk' target='_blank'><img src='http://image lin here.co.uk' border='1'></a>"

increment = Math.floor(Math.random() * number);
document.write(banner[increment]);
//--></SCRIPT>
</td>
<!-- End Banner Rotator -->