on this page the text under the sclide show is defult, and i cant find anythiing in the script to change it
the script is
var variableslide=new Array()
//variableslide[x]=["path to image", "OPTIONAL link for image", "OPTIONAL text description (supports HTML tags)"]
variableslide[0]=['slideshowpics/01.jpg', '', '']
variableslide[1]=['slideshowpics/02.jpg', '', 'Designing with the ruins of a previously existing stone barn to install a symmetrical, raised bed garden used for vegetables, picking flowers and visual beauty']
variableslide[2]=['slideshowpics/03.jpg', '', 'Designing with the ruins of a previously existing stone barn to install a symmetrical, raised bed garden used for vegetables, picking flowers and visual beauty']
variableslide[3]=['slideshowpics/04.jpg', '', 'An example of a small wandering walkway that leads you to an intimate garden setting']
variableslide[4]=['slideshowpics/05.jpg', '', 'A simple, yet dramatic design complimenting the front of home built onto an old one-room school house.']
variableslide[5]=['slideshowpics/06.jpg', '', 'A simple, yet dramatic design complimenting the front of home built onto an old one-room school house.']
variableslide[6]=['slideshowpics/07.jpg', '', 'A simple, yet dramatic design complimenting the front of home built onto an old one-room school house.']
variableslide[7]=['slideshowpics/08.jpg', '', 'On this property we designed and installed the plantings, patio and pathway']
variableslide[8]=['slideshowpics/09.jpg', '', 'On this property we designed and installed the plantings, patio and pathway']
variableslide[9]=['slideshowpics/10.jpg', '', 'On this property we designed and installed the plantings, patio and pathway']
variableslide[10]=['slideshowpics/11.jpg', '','On this property we designed and installed the plantings, patio and pathway']
//configure the below 3 variables to set the dimension/background color of the slideshow
var slidewidth='440px' //set to width of LARGEST image in your slideshow
var slideheight='120px' //set to height of LARGEST iamge in your slideshow, plus any text description
var slidebgcolor='#F3F3F3'
//configure the below variable to determine the delay between image rotations (in miliseconds)
var slidedelay=4000
////Do not edit pass this line////////////////
var ie=document.all
var dom=document.getElementById
for (i=0;i<variableslide.length;i++){
var cacheimage=new Image()
cacheimage.src=variableslide[0]
}
var currentslide=0
function rotateimages(){
contentcontainer='<center>'
if (variableslide[currentslide][1]!="")
contentcontainer+='<a href="'+variableslide[currentslide][1]+'">'
contentcontainer+='<img src="'+variableslide[currentslide][0]+'" border="5" vspace="0">'
if (variableslide[currentslide][1]!="")
contentcontainer+='</a>'
contentcontainer+='</center>'
if (variableslide[currentslide][2]!="")
contentcontainer+=variableslide[currentslide][2]
if (document.layers){
crossrotateobj.document.write(contentcontainer)
crossrotateobj.document.close()
}
else if (ie||dom)
crossrotateobj.innerHTML=contentcontainer
if (currentslide==variableslide.length-1) currentslide=0
else currentslide++
setTimeout("rotateimages()",slidedelay)
}
if (ie||dom)
document.write('<div id="slidedom" style="width:'+slidewidth+';height:'+slideheight+'; background-color:'+slidebgcolor+'"></div>')
function start_slider(){
crossrotateobj=dom? document.getElementById("slidedom") : ie? document.all.slidedom : document.slidensmain.document.slidenssub
if (document.layers)
document.slidensmain.visibility="show"
rotateimages()
}
if (ie||dom)
start_slider()
else if (document.layers)
window.onload=start_slider
</script>
<ilayer id="slidensmain" width=&{slidewidth}; height=&{slideheight}; bgColor=&{slidebgcolor}; visibility=hide><layer id="slidenssub" width=&{slidewidth}; left=0 top=0></layer></ilayer>
im wanting to center the text and change the font to Comic Sans MS to fit in with the rest of the site and poss the font size
Thank you for your help
the script is
var variableslide=new Array()
//variableslide[x]=["path to image", "OPTIONAL link for image", "OPTIONAL text description (supports HTML tags)"]
variableslide[0]=['slideshowpics/01.jpg', '', '']
variableslide[1]=['slideshowpics/02.jpg', '', 'Designing with the ruins of a previously existing stone barn to install a symmetrical, raised bed garden used for vegetables, picking flowers and visual beauty']
variableslide[2]=['slideshowpics/03.jpg', '', 'Designing with the ruins of a previously existing stone barn to install a symmetrical, raised bed garden used for vegetables, picking flowers and visual beauty']
variableslide[3]=['slideshowpics/04.jpg', '', 'An example of a small wandering walkway that leads you to an intimate garden setting']
variableslide[4]=['slideshowpics/05.jpg', '', 'A simple, yet dramatic design complimenting the front of home built onto an old one-room school house.']
variableslide[5]=['slideshowpics/06.jpg', '', 'A simple, yet dramatic design complimenting the front of home built onto an old one-room school house.']
variableslide[6]=['slideshowpics/07.jpg', '', 'A simple, yet dramatic design complimenting the front of home built onto an old one-room school house.']
variableslide[7]=['slideshowpics/08.jpg', '', 'On this property we designed and installed the plantings, patio and pathway']
variableslide[8]=['slideshowpics/09.jpg', '', 'On this property we designed and installed the plantings, patio and pathway']
variableslide[9]=['slideshowpics/10.jpg', '', 'On this property we designed and installed the plantings, patio and pathway']
variableslide[10]=['slideshowpics/11.jpg', '','On this property we designed and installed the plantings, patio and pathway']
//configure the below 3 variables to set the dimension/background color of the slideshow
var slidewidth='440px' //set to width of LARGEST image in your slideshow
var slideheight='120px' //set to height of LARGEST iamge in your slideshow, plus any text description
var slidebgcolor='#F3F3F3'
//configure the below variable to determine the delay between image rotations (in miliseconds)
var slidedelay=4000
////Do not edit pass this line////////////////
var ie=document.all
var dom=document.getElementById
for (i=0;i<variableslide.length;i++){
var cacheimage=new Image()
cacheimage.src=variableslide[0]
}
var currentslide=0
function rotateimages(){
contentcontainer='<center>'
if (variableslide[currentslide][1]!="")
contentcontainer+='<a href="'+variableslide[currentslide][1]+'">'
contentcontainer+='<img src="'+variableslide[currentslide][0]+'" border="5" vspace="0">'
if (variableslide[currentslide][1]!="")
contentcontainer+='</a>'
contentcontainer+='</center>'
if (variableslide[currentslide][2]!="")
contentcontainer+=variableslide[currentslide][2]
if (document.layers){
crossrotateobj.document.write(contentcontainer)
crossrotateobj.document.close()
}
else if (ie||dom)
crossrotateobj.innerHTML=contentcontainer
if (currentslide==variableslide.length-1) currentslide=0
else currentslide++
setTimeout("rotateimages()",slidedelay)
}
if (ie||dom)
document.write('<div id="slidedom" style="width:'+slidewidth+';height:'+slideheight+'; background-color:'+slidebgcolor+'"></div>')
function start_slider(){
crossrotateobj=dom? document.getElementById("slidedom") : ie? document.all.slidedom : document.slidensmain.document.slidenssub
if (document.layers)
document.slidensmain.visibility="show"
rotateimages()
}
if (ie||dom)
start_slider()
else if (document.layers)
window.onload=start_slider
</script>
<ilayer id="slidensmain" width=&{slidewidth}; height=&{slideheight}; bgColor=&{slidebgcolor}; visibility=hide><layer id="slidenssub" width=&{slidewidth}; left=0 top=0></layer></ilayer>
im wanting to center the text and change the font to Comic Sans MS to fit in with the rest of the site and poss the font size
Thank you for your help