[Solved] How to set a Max width on my page containers [closed]


You can try adding this line in responsive.css (last line):

#page, #main { width: auto;  max-width: 1600px; margin: 0 auto;}

It will basically set a max-width and center the #main and #page element.

Seeing the code on your website, I’m not sure that will set a max-width to all your website. It’s a really choatic piece of code.

1

solved How to set a Max width on my page containers [closed]