IE 6 Spacing Issue

IE 6 is creating this mystery space around my content at this site here,

I cannot seem to find the issue other than it is in a table.

Is there anything anyone else sees here on this that I might be missing?

Thanks for any help or advice on this,

Paul

Hi,

You have this:


        <div id="rightcolcontainer">
            <div id="rightcolwrap">

rightcolcontainer = 770px
rightcolwrap = 20px padding

That means the space available is now only 730px yet you have set all the tables in that section to be 770px wide which is 40px too wide. Reduce the size of the tables to fit or remove the padding from rightcolwrap.

wow, thanks Paul for that, this was driving me nuts today.

Paul