Below is a linked page where I have a scroller in the top right. And in IE6, the right graphic that is the blue rounded corner shape spills down or moves down under the scroller instead of being flush with the right side of the scroller area.
That did the trick! However, when viewing the page in IE8 the navigation bar is not in the correct position and it appears to be repeated for some reason. Here is a link to the snapshot that I have for IE8. Any fixes for why this would happen?
I went back and created the slideshow/scroller area out of one div and it now uses no background image. But it now seems to be messed up in IE8 in a different way than it looks in IE6 (which is still wrong).
Well, what possibly you could have done is for the slider section
instead slicing into three (left, center and right) div, one div with an entire background image.
Now as you haven’t done so let i will tweak your existing code.
2.- it’s better if you had those three divs “slideshowLeft”, “slideshow”, slideshowRight" inside a wrapper div and position the wrapper div instead position three divs.
and, those three divs can be position to relative with floating to left, this will make sure "if there is enough space in div wrapper those three div will allways float to left. Also eliminate cross-browser issue.
Here is some part of the twisted code,
<div id="banner">
<div id="logo"><a href="http://www.tds-exhibits.com/" title="TDS Exhibits - A full-service exhibit company."><h1>TDS Exhibits - A full-service exhibit company</h1></a></div><!--end logo-->
[B][COLOR="DarkGreen"]<div id="slide-wrapper">[/COLOR][/B]<div id="slideshowLeft"><img src="rtey_files/gfx_slideshow_left.gif" alt="" width="21" height="158"></div><!--end slideshowLeft-->
<div id="slideshow"> [B][COLOR="Red"]your javascript and code will as it is[/COLOR][/B] </div><!--end slideshow-->
<div id="slideshowRight"><img src="rtey_files/gfx_slideshow_right.gif" alt="" width="21" height="158"></div><!--end slideshowRight-->[B][COLOR="DarkGreen"]<div style="clear:both"></div>[/COLOR][/B][B][COLOR="DarkGreen"]</div>[/COLOR][/B]
</div><!--end banner-->
There seems to be not enoug space for two divs inside div “banner”. you can try removing some margin from div logo. I think that will give some space to slider.