Here is the old code I used to use and it seemed to work very well on 3.8.2. Now all I seemed to get is a bunch or code only in the header section of the site. Any help is most appreciated!
<script type="text/javascript">
var imgs1 = new Array();
var lnks1 = new Array("http://www.xtremeglobalgamers.com/public_html/forum/images/banners/XGG%20DARK%20START%20HEADER.jpg","http://www.xtremeglobalgamers.com/public_html/forum/images/banners/XGG%20DARK%201942%20HEADER.jpg","http://www.xtremeglobalgamers.com/public_html/forum/images/banners/XGG%20DARK%20B2%20HEADER.jpg","http://www.xtremeglobalgamers.com/public_html/forum/images/banners/XGG%20DARK%20BF2S%20HEADER.jpg","http://www.xtremeglobalgamers.com/public_html/forum/images/banners/XGG%20DARK%202142%20HEADER2.jpg","http://www.xtremeglobalgamers.com/public_html/forum/images/banners/XGG%20DARK%20cod%20war%20HEADER.jpg","http://www.xtremeglobalgamers.com/public_html/forum/images/banners/XGG%20DARK%20COD4%20HEADER.jpg");
var alt1 = new Array();
var currentAd1 = 0;
var imgCt1 = 1;
function cycle1() {
if (currentAd1 == imgCt1) {
currentAd1 = 0;
}
var banner1 = document.getElementById('adBanner1');
var link1 = document.getElementById('adLink1');
banner1.src=imgs1[currentAd1]
banner1.alt=alt1[currentAd1]
document.getElementById('adLink1').href=lnks1[currentAd1]
currentAd1++;
}
window.setInterval("cycle1()",5000);
</script>
<a href=""http://www.xtremeglobalgamers.com/public_html/forum/images/banners/XGG%20DARK%20START%20HEADER.jpg"" id="adLink1" target="_top">
<img src= id="adBanner1" border="0" width="1200" height="177"></a>
|