Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS align theme to the left Re: align theme to the left

#79450

No Need of giving padding and margin, just delete the margin code from the css. The margin:0 auto; css if used for align the wrapper width in the center, So Please delete the css code and try out the new css that i have given below as After. I hope this will help for you ;)

Before :

Sheet {
margin:0 auto;
min-height:41px;
min-width:41px;
overflow:hidden;
position:relative;
width:800px;
z-index:0;
}

After :

Sheet {
min-height:41px;
min-width:41px;
overflow:hidden;
position:relative;
width:800px;
z-index:0;
}