For Webmasters cross browser compatibility is one of the major concern and if you are trying a fixed width layout and want your site as centered all you need to do is add the following to your CSS file.
body {
text-align:center; /* for IE */
}
div#contentwrap {
text-align:left; /* reset text alignment */
width:748px; /* or a percentage, or whatever */
margin:0 auto; /* for the rest */
}
Now make sure you add the following div just after the body tag.
<div id="contentwrap">
and end the div just before the closing body tag. Now your entire site will be center aligned in all browsers.
Enjoy !!!
But if you are not planning to subscribe through Email. Try subscribing to RSS.
