|
Ok, first of all, you would benefit from moving all that inline styling to an external stylesheet. Why? Because in the future when you want to make changes you will have make changes in one spot instead of opening every single page and editing them.
You have set the text-align of your tables to left.
a) this is the default so it isn't necessary to spec this.
b) this would be one reason why the content appears to not be centered.
If you are going to have empty cells in your table, then put a non-breaking space in the cell. Some browsers have issues with empty cells.
Try those fixes and come back if you still have issues.
|