Hi,
Vicious Vixen You could try this below that will show a different image when you visit the page
It was a script I used for
this template
Checked Using Browsers Chrome - Firefox - Microsoft Edge - Internet Explorer 11
You can add
the direct image Url's and link each image
You can add as many you want
So if want more just add
myimages[6]="Add IMAGE Url Here"
myimages[7]="Add IMAGE Url Here"
With the corresponding Link
imagelinks[6]="Add corresponding Link Here"
imagelinks[7]="Add corresponding Link Here"
You can also set the image height and width I have marked in bold width="
50" height="
50" border=0>
<center><script language="JavaScript">
<!--
/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/
function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="Add IMAGE Url Here"
myimages[2]="Add IMAGE Url Here"
myimages[3]="Add IMAGE Url Here"
myimages[4]="Add IMAGE Url Here"
myimages[5]="Add IMAGE Url Here"
//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="Add corresponding Link Here"
imagelinks[2]="Add corresponding Link Here"
imagelinks[3]="Add corresponding Link Here"
imagelinks[4]="Add corresponding Link Here"
imagelinks[5]="Add corresponding Link Here"
var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" width="
50" height="
50" border=0></a>')
}
random_imglink()
//-->
</script></center><br />
Steve
Last Edit: Checked browsers Chrome - Firefox - Internet Explorer 11 - Microsoft Edge