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;
}