In the script, change:
Code:
//Specify gap between each image (use HTML):
var imagegap="<image/maps/hotel1a0.png>"
to:
Code:
//Specify gap between each image (use HTML):
var imagegap=" "
And in css/styles.css change:
Code:
#temp img, #test2 img, #test3 img {width:1000px; display: inline(; float:left;); }
@media screen and (-webkit-min-device-pixel-ratio:0) {
#temp img, #test2 img, #test3 img {display:table;line-height: 0;width:1000px;float:left;}
}
to:
Code:
#temp img, #test2 img, #test3 img {width:1000px; display: inline(; float:none;); }
@media screen and (-webkit-min-device-pixel-ratio:0) {
#temp img, #test2 img, #test3 img {display:inline;line-height: 0;width:1000px;float:none;}
}
Bookmarks