Replace:
Code:
imagearray: [
["images/cabinetry/kitchen-1a", "", "", ""],
["images/cabinetry/kitchen-1b", "", "", ""],
["images/cabinetry/kitchen-1c", "", "", ""],
["images/cabinetry/kitchen-2a", "", "", ""],
["images/cabinetry/kitchen-2b", "", "", ""],
["images/cabinetry/kitchen-2c", "", "", ""],
["images/cabinetry/wall_console", "", "", ""],
["images/cabinetry/bar1", "", "", ""],
["images/cabinetry/bar2", "", "", ""],
["images/cabinetry/dresser", "", "", ""],
["images/cabinetry/dressing", "", "", ""],
["images/cabinetry/home_theatre", "", "", ""] //<--no trailing comma after very last image element!
],
with:
Code:
imagearray: [
["images/cabinetry/kitchen-1a.jpg", "", "", ""],
["images/cabinetry/kitchen-1b.jpg", "", "", ""],
["images/cabinetry/kitchen-1c.jpg", "", "", ""],
["images/cabinetry/kitchen-2a.jpg", "", "", ""],
["images/cabinetry/kitchen-2b.jpg", "", "", ""],
["images/cabinetry/kitchen-2c.jpg", "", "", ""],
["images/cabinetry/wall_console.jpg", "", "", ""],
["images/cabinetry/bar1.jpg", "", "", ""],
["images/cabinetry/bar2.jpg", "", "", ""],
["images/cabinetry/dresser.jpg", "", "", ""],
["images/cabinetry/dressing.jpg", "", "", ""],
["images/cabinetry/home_theatre.jpg", "", "", ""] //<--no trailing comma after very last image element!
],
As for the other matter, I think you mean version 1.5x which had:
Code:
var fadebgcolor="white"
In the current version style is used instead. Put this in the head of the page:
Code:
<style type="text/css">
#fadeshow1, #fadeshow1 .gallerylayer {
background-color: white!important;
}
</style>
Bookmarks