Helpful Information
 
 
Category: vB5 General Discussions
Will pay for Rotating Ad banner install/help

hi guys.. My site is getting sponsors faster than i can research and learn how to accomplish things on VB.. I need a Hack that will allow me to add multiple sponsor banners to one advert slot and set how long they stay up before the next one rotates in.. ive messed with some banner rotators and there either not compatible with VB4.2 or I just cant figure out how to make them work.. Please help. Id like to discuss cost and the program features up front.. thanks

Feel free to move this to the appropriate place if this isnt it.. i didnt know where to post this. thanks!

http://www.vbulletin.org/forum/forumdisplay.php?f=30

How about putting this script in your ad section?
It rotates the banner with each pagerefresh, and you can add as many banners as you want.

Compatible with all versions becouse it is just basic javascript.

<script language="JavaScript">

images = new Array(4);

images[0] = "<a href = 'http://www.LinkToBannersWebsiteA.com' target='_blank'><img src='http://www.PlaceWhereTheBannerIsStored_a.gif' alt='ALT text'></a>";
images[1] = "<a href = 'http://www.LinkToBannersWebsiteB.com' target='_blank'><img src='http://www.PlaceWhereTheBannerIsStored_b.gif' alt='ALT text'></a>";
images[2] = "<a href = 'http://www.LinkToBannersWebsiteC.com' target='_blank'><img src='http://www.PlaceWhereTheBannerIsStored_c.gif' alt='ALT text'></a>";
images[3] = "<a href = 'http://www.LinkToBannersWebsiteD.com' target='_blank'><img src='http://www.PlaceWhereTheBannerIsStored_d.gif' alt='ALT text'></a>";

index = Math.floor(Math.random() * images.length);
document.write(images[index]);

</script>










privacy (GDPR)