This:
Code:
<link rel="stylesheet" href="#thumbBox{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
left: 0;
top: 0;
width: auto;
padding: 10px;
padding-botto . . .
is completely invalid. I'm hoping that you understand why, or at least are aware that it is in your source code. You could do:
Code:
<style type="text/css">
#thumbBox{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
left: 0;
top: 0;
width: auto;
padding: 10px;
padding-botto . . .
</style>
There could also be other problems.
Bookmarks