Search code examples
csscenteralignment

Centering content issue


Can anyone tell me what I need to do in order to get the following page to center the contents correctly?

I've been trying to work with something else I used earlier in the day from here:

#divWrapper {margin:0 auto; text-align:center;} 
#div {text-align:left;}

But this isn't working for me. One of the pages I need help with is here: REDACTED

Thank you for any help, I'm just trying to get this fixed before I can head off to bed :\


Solution

  • #main-inner {
        position: relative;
        width: 960px;
        border-top: 3px solid #DADADA;
        margin: 20px auto 0;
        overflow:auto;
        zoom:1;
    }
    

    try this one. replace the existing with this. it should center the content.