According to FF's DOM Inspector, the page is expecting the loading.gif here:
Code:
http://www.vipink.co.uk/Gallery/loading.gif
That is also where it is indicated as being in the thumbnailviewer.js file:
Code:
defineLoading: '<img src="loading.gif" /> Loading Image...', //Define HTML for "loading" div
which would require it to be in the same folder as the page that is using it, again - the Gallery folder. It is not in that location. I poked around a bit on your server, but wasn't as lucky this time in finding the out of place file. Put it in the Gallery folder and it should show up on the page. Or, you can change the red code in the above to indicates its current position, whatever that is.
About your other question, in thumbnailviewer.css this worked out well in FF at least (changes/additions red):
Code:
#thumbBox{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
left: 100%!important;
top: 0;
margin-left:-50%;
width: auto;
padding: 10px;
padding-bottom: 0;
background: #313131;
visibility: hidden;
z-index: 10;
cursor: hand;
cursor: pointer;
}
I cannot be certain how this will work out in other browsers without further testing. Just try it and see.
Also, get rid of this:
Code:
<link rel="stylesheet" href="../Templates/thumbnailviewer.css" type="text/css" />
There is nothing there. The thumbnailviewer.css stylesheet is being linked from its actual location (once again, it's in the Gallery folder) a little farther down in your code where you already have this:
Code:
<link href="thumbnailviewer.css" rel="stylesheet" type="text/css" />
I'd suggest going over your code. If this is any indication, you probably have other items that aren't doing anything or worse, actually causing problems.
Bookmarks