Well, looking at the CSS for that page, this is actually a problem with your page's CSS in general, namely:
Code:
#apDiv2 {
position:absolute;
left:390px;
top:14px;
width:450px;
height:260px;
z-index:2;
}
Perhaps you're trying to position this column to the right on the page using absolute positioning, but in general, that's not the best approach (as evident with your outcome). Try floating the column "right" instead:
Code:
#apDiv2 {
float: right;
width:450px;
height:260px;
z-index:2;
}
Not that I haven't fully tested this out in all browsers yet, which with CSS you need to do.
Bookmarks