Hi I made a mistake forgetting a point and some quotes in the css. It needs to be like this
Code:
.descpanelbg { /* see the red point in the beginning of this line*/
background: url('http://www.webox.gr/fresh/images/video.jpg') !important;
}
You have a little mistake with an extra comma in this part
Code:
<script type="text/javascript">
var mygallery=new fadeSlideShow({
wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow
dimensions: [950, 600], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://www.webox.gr/fresh/images/1.jpg", "", "", "<b>What’s Fresh & New</b><br><br>Nέο <b>All Day Sandwich</b> To νέο σάντουιτς απευθύνεται σε όλους με υπέροχες γεύσεις και...<br><br><br><br><br><br><br><br><br><br><br><br>"],
["http://www.webox.gr/fresh/images/2.jpg", "", "", "<b>What’s Fresh & New</b><br><br>Nέο <b>All Day Sandwich</b> To νέο σάντουιτς απευθύνεται σε όλους με υπέροχες γεύσεις και...<br><br><br><br><br><br><br><br><br><br><br><br>"],
["http://www.webox.gr/fresh/images/3.jpg", "", "", "<b>What’s Fresh & New</b><br><br>Nέο <b>All Day Sandwich</b> To νέο σάντουιτς απευθύνεται σε όλους με υπέροχες γεύσεις και...<br><br><br><br><br><br><br><br><br><br><br><br>"],
["http://www.webox.gr/fresh/images/4.jpg", "", "", "<b>What’s Fresh & New</b><br><br>Nέο <b>All Day Sandwich</b> To νέο σάντουιτς απευθύνεται σε όλους με υπέροχες γεύσεις και...<br><br><br><br><br><br><br><br><br><br><br><br>"],
["http://www.webox.gr/fresh/images/5.jpg", "", "", "<b>What’s Fresh & New</b><br><br>Nέο <b>All Day Sandwich</b> To νέο σάντουιτς απευθύνεται σε όλους με υπέροχες γεύσεις και...<br><br><br><br><br><br><br><br><br><br><br><br>"], // remove the red comma
],
displaymode: {type:'auto', pause:5000, cycles:0, wraparound:false},
persist: false, //remember last viewed slide and recall within same session?
fadeduration: 5000, //transition duration (milliseconds)
descreveal: "ondemand",
togglerid: ""
})
</script>
This little comma will prevent it from working in IE. Scroll the codebox to see it.
There are many <br> tags in the description and it will not validate like that, but you can try something like this
Code:
.descpanelfg {
text-align: center;
}
There is a blog post about this on dynamic drive look HERE
Bookmarks