i was able to do so on my old YaBB forum using this code...
I cannot get this to work on the Vb forum, or maybe i just cant find the right place to add it..
it doesn't have to be that code...if someone knows something that may work better for Vb
all it does it rotate out the banner onthe forum at every refresh, regaurdless of what page you were on....i'd be happy if it would just work on the front page
Help please, the Vb coding is new to me, and is giving me a hard time!
webmaster of www.highperformancetoys.com
Code:
<IMG SRC="http://www.highperformancetoys.com/webheader/web header alpha.jpg" NAME="myPicture">
Code:
<!-- Hide script from old browsers
Code:
var myPix = new Array("http://www.highperformancetoys.com/webheader/web header1.jpg", "http://www.highperformancetoys.com/webheader/web header2.jpg", "http://www.highperformancetoys.com/webheader/web header black box.jpg", "http://www.highperformancetoys.com/webheader/web header 69camaro.jpg", "http://www.highperformancetoys.com/webheader/web header mach1.jpg", "http://www.highperformancetoys.com/webheader/69 camaro header.jpg",
Code:
function choosePic() {
Code:
if (document.images) {
Code:
randomNum =
Code:
Math.floor((Math.random() * 100)) % 22
Code:
document.myPicture.src = myPix[randomNum]
Code:
}
Code:
}
Code:
// End hiding script from old browsers -->
Code:
</SCRIPT>
it doesn't have to be that code...if someone knows something that may work better for Vb
all it does it rotate out the banner onthe forum at every refresh, regaurdless of what page you were on....i'd be happy if it would just work on the front page

Help please, the Vb coding is new to me, and is giving me a hard time!
webmaster of www.highperformancetoys.com
Comment