I'm not sure if I posted this in the right place so i apologise if so. But here goes. I have a new site http://www.tattoonest.com and if you check it out you will see on the homepage that the center part of the site is offset. How do i make it so it is centered? Thanks in advance for any help regarding this matter.
In your html, the <td> with the id="navColumnOne" also has a style="width:200px;" which is making that column too big, pushing the center column over to the right more. The inline style there must be removed, or trying adding #navColumnOne { width: 140px; } to your css for an easier fix, although the inline style might overwrite this, i'm not sure..