overflow:hidden
Apply it to the dynloadarea not the content area which includes the thumbs.
overflow:none
might be better
If that's no good try changing this:
Code:
<div id="dynloadarea" style="width:296px; height:152px; left: 0px; top: 0px; padding-top: 0px;"></div>
<div id="thumbs" style="width:195px; position: relative; top: -152px; left: 355px;">
to this:
Code:
<div id="dynloadarea" style="width:296px; height:152px; left: 0px; top: 0px; padding-top: 0px;display:inline"></div>
<div id="thumbs" style="width:195px; position: absolute; display:inline;">
You might need to throw a <br> or two in there someplace to get any needed line-breaks into the display.
Bookmarks