toheselue 0 Report post Posted March 16, 2011 Is there a possibility to reduced Global Content Width to 400 pxl? I tried it, but it stops at 800 pxl. Thank you for your answers Share this post Link to post Share on other sites
cmunns 16 Report post Posted March 16, 2011 Depends on the design framework you use, but you would have to apply css manually Maybe starting here, depending? ` .fixed_width #page, .fixed_width #footer, .canvas #page-canvas { width: 960px; } ` Live link? Share this post Link to post Share on other sites
toheselue 0 Report post Posted June 16, 2011 Hello Many thanks for your kind answers. I did change the ???width??? in the CSS to 600px and it did work, BUT as soon as I did some other changes on the template it was back to 800px. It seems that it is burned somewhere in the php file ? The snippet from? Adams looks interesting, but in what file do I have to look for ? Grateful for an answer Share this post Link to post Share on other sites
Kate 3 Report post Posted June 16, 2011 Try adding the !important declaration to the end of it. Something like this: .fixed_width #page, .fixed_width #footer, .canvas #page-canvas {width: 960px !important;} Share this post Link to post Share on other sites