website center offset

Discussion in 'HTML & Website Design' started by Flashnest, Jan 22, 2009.

  1. #1
    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.
     
    Flashnest, Jan 22, 2009 IP
  2. Anthony Thomas

    Anthony Thomas Peon

    Messages:
    46
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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..
     
    Anthony Thomas, Jan 22, 2009 IP