Looking at this page, my goal is to center the main #container div horizontally in relation to the page. In a typical scenario, I would simply add a CSS rule like this,
#container { margin: 0 auto }
However, the layout of this specific page (which I didn't create) uses absolute positioning for #container and most of its child elements, making this property ineffective.
I'm wondering if there's a way to achieve the horizontal centering without changing the layout to use static positioning. I'm open to using JavaScript/JQuery if that's the only solution to meeting my goal.