In thumbnailviewer.css you can add a negative margin to move the display in that direction. For example, to move it 120 pixels to the left:
Code:
#thumbBox{ /*Outermost DIV for thumbnail viewer*/
margin-left:-120px;
position: absolute;
left: 0;
top: 0;
width: auto;
padding: 10px;
padding-bottom: 0;
background: #313131;
visibility: hidden;
z-index: 10;
cursor: hand;
cursor: pointer;
}
Whatever you add to that selector should also be done with the loading division:
Code:
#thumbLoading{ /*DIV for showing "loading" status while thumbbox is being generated*/
margin-left:-120px;
position: absolute;
visibility: hidden;
border: 1px solid black;
background-color: #EFEFEF;
padding: 5px;
z-index: 5;
}
Bookmarks