5
the easiest way to do so for both browser IE and firefox is to set your body to center and then align the next container to left.
Look into the files of the actual theme!
First, Open your theme.html, add a
around your content, put
right after the opening tag and one
right before the closing tag.
In short it should look like this :
...... your content ....
Then open and edit your style.css and add:
body {
text-align:center;
}
#xoopscontent {
margin: 0 auto 0 auto;
text-align:left;
}
Happy theming