Forum Moderators: open
If so, yes they are better to use (IMO) of course.
they can also be tricky to get cross browser consistency.
To center horzontally you need to use css like so:
body {
text-align:center;
}
#mainwrapper {
margin:0 auto;
}
Where your main wrapper <div> has an ID of mainwrapper.
the text-align:center; is for older versions of IE to centre the page, the
margin:0 auto;
is for good browsers.
Ben
Search the forums. We have a ton of threads on this topic. Here's one to start you off: Should I go tableless or not? [webmasterworld.com] You'll probably have the best luck searching for CSS layouts [google.com] or tableless layouts [google.com].