Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My tumblr website home page is centered; however, the permalink pages after you click an image shifts to the right. The site is chalkthoughts.com and if you click an image, you can see the problem.

The elements are in the following structure:

<div id="header">
</div>
<div id="container">
</div>

CSS on home page:

#container {
    position: relative;
    top: 5px;
    text-align: left;
    margin: 0px auto;
    z-index: 0;
    padding-bottom: 100px;
    width: 630px;
    width: 870px;
    min-height: 1000px;
    height: auto !important;
    height: 1000px;
}

#header {
   left: 50%;
    width: 630px;
    margin-left: -315px;
    width: 870px;
    margin-left: -435px;
    margin-bottom: 5px;
 }

CSS on Permalink pages.

#header {
    left: 50%;
    width: 630px;
    margin-left: -315px;
    margin-bottom: 5px;
}

#container {
    position: relative;
    top: 5px;
    text-align: left;
    margin: 0px auto;
    z-index: 0;
    padding-bottom: 100px;
    width: 630px;
}
share|improve this question
People tend to ignore, and downvote posts with extensive amounts of code. It makes it difficult to help you out! Try to post only the relevant pieces of code. – Mike M Oct 31 '12 at 3:37
Agreed, there is way too much code here and you need to try to track this down a bit. Questions like "my site is not displaying something properly, why?" only help one person. Questions like "how do I correctly center [element] in [element]" help future visitors too. If you can edit to that effect, I'm happy to re-open this. – Tim Post Oct 31 '12 at 5:53

closed as too localized by Tim Post Oct 31 '12 at 5:53

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Check out your css.

On home page-

#container {
    position: relative;
    top: 5px;
    text-align: left;
    margin: 0px auto;
    z-index: 0;
    padding-bottom: 100px;
    width: 630px;
    width: 870px;
    min-height: 1000px;
    height: auto !important;
    height: 1000px;
}

On picture page-

#container {
    position: relative;
    top: 5px;
    text-align: left;
    margin: 0px auto;
    z-index: 0;
    padding-bottom: 100px;
    width: 630px;
}

Try getting rid of the dual declaration and changing the picture page width to match the home page.

Check out your header as well.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.