Centering container

Permalink
Small centering problem,
In ccs the code hereunder.
Which doesn’t center the site in Concrete5.7.3 but does as an html index page uotside of concrete 5?
I'm doing something wrong obviously

Kind regards,

Niels


/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
   width: 960px;
   background-color: #FFF;
   margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
   color: #000;
}

NLS61
 
NLS61 replied on at Permalink Best Answer Reply
NLS61
I've solved it it seema Google is my friend

.container {
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 600px;
}

This website stores cookies on your computer. These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media. To find out more about the cookies we use, see our Privacy Policy.