creating a fixed width centered app in mendix

1
I'd like to have my app fized @ 950px wide and centered for all content other than the header. I have tried updating the css class .MxClient_contentContainer with a fixed width and margin:auto but it doesn't seem to have any affect on the app. Is this the right class to update?
asked
2 answers
3

For firefox this should do the trick:

.tundra .MxClient_contentContainer {
width: 950px;
margin: auto;

}

For Internet Explorer you have to include text-align:center; to the body and text-align:left; to the contentContainer.

answered
0

Thanks Erik, worked a treat!

answered