It is possible to have header and footer width of 1200 px and the content between 1000 px?
I have – without luck – tried with:
.container {
width: 1000px;
}
Hey Peter,
Please try this instead:
#header .container, #footer .container {
width: 1200px !important;
}
If that doesn’t work then please post a link to your site so that we can have a closer look.
Best regards,
Rikard
Hi Rikard,
Thank you for your suggestion – but unfortunately it did not work.
But your suggestion gave me a hint. I got this to work:
#header .container {
width: 1300px;
}
#main .container {
width: 1100px;
}
#footer .container {
width: 1300px;
}