Hi Tim,
Did you mean a horizontal scrollbar rather than a vertical one
The vertical one is obvious, because you have too much content 
The horizontal scrollbar is caused mainly by the padding you have added to the left and right floats. You have mixed percentages and padding which don't add up and soon become too big for the window.
Take out the padding and put it on an inner element.
Code:
#contentleft {
width:70%;
float:left;
margin:0px;
background:#ECFFFF;
}
#contentright {
width:25%;
float:right;
background:#ECFFFF;
}
The top images not wrapping is because you have told them not to with white-space:nowrap here:
Code:
#navigation ul {
margin:0px;
padding:0px;
white-space:nowrap;
}
Remove it and the images should wrap.
You also need to look at the unbroken text in your right column which causes Ie to jump the float down. If you add some space between the words then the element will get a lot smaller before dropping.
Hope that helps.
Paul
Bookmarks