Get rid of this extra comma (red):
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [599, 349], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["images/banner/banner01.jpg"],
["images/banner/banner02.jpg"],
],
displaymode: {type:'auto', pause:2500, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 500, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
About that other problem, the alert, I couldn't get it to happen. So I'm not sure what caused it. Non-standard markup can sometimes cause something like that. But the page validates except for one warning and one error both of which are trivial, neither of which should affect that division not showing up.
You can fix those though, might help. On line #153:
Code:
<div id="mydiv4" class="cms-editable"><p class="datetime">10th & 11th May 8.00pm</p>
That should be:
Code:
<div id="mydiv4" class="cms-editable"><p class="datetime">10th & 11th May 8.00pm</p>
And on line #207:
Code:
Ballyalbany Church is delighted to launch our new dynamic website, full of the latest information on our various activities. We have a brand new, easy to remember, website address to go with it www.ballyalbanychurch.ie . </p>
At the end there's a </p> that doesn't belong, get rid of it.
Other than those two things, if you can determine under what circumstances you get that alert, that might help me to be able to fix it.
When it does happen, does the slideshow still work? If so we can simply disable the alert, let me know.
Bookmarks