If it's a table layout simply add align="center" to the outer table. If that table is width 100% you would need to add align="center" to the table cell to center it's contents.
You can also use CSS
body { text-align : center; }
and then in your tables or divs you would need to counter that but using text-align:left;
Your outer table takes up the full screen width so you want to center the content within that. Therefore you should use <td align="center"> on the outer table or else <table align="center"> on the inner table.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.