To answer your question:
1) The only step required is just to set the toc parameter to "markup", then empty out the pagination DIV so it contains no content.
2) Inside the .js file, try finding the lines:
Code:
sliderdiv["onclick"]=function(){ //stop content slider when slides themselves are clicked on
featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
}
and modifying that to:
Code:
sliderdiv["onclick"]=function(e){ //stop content slider when slides themselves are clicked on
var e=window.event||e
if (typeof e.target=="undefined")
e.target=e.srcElement
if (e.target.tagName=="A" || e.target.tagName=="IMG" && e.target.parentNode.tagName=="A")
featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
}
3) I don't see a white space at the top of the Content Slider actually (FF3.x). What browser does this happen in?
Bookmarks