[SOLVED] Body align central
Posted: Sun Sep 16, 2007 3:12 pm
I have a open template (from OSWD).
This template is XHTML 1.0 Transitional and I want XHTML 1.0 Strict.
I changed all tags for this but I have a problem of central body in FF, in IE 6 is good
In originale template there is:
I substitute in template:
and in CSS:
Help. Any ideas? 
Thanks
Alby
This template is XHTML 1.0 Transitional and I want XHTML 1.0 Strict.
I changed all tags for this but I have a problem of central body in FF, in IE 6 is good

In originale template there is:
Code: Select all
...........
</__body>
<div id="page" align="center">
<div id="header">
..........
Code: Select all
..........
</__body>
<div id="page">
<div id="header">
..........
Code: Select all
body{
text-align:center;
}
#page{
margin:0 auto;
text-align:left;
}

Thanks
Alby