In Dreamweaver 3.0 (or any Dreamweaver for that matter) I'm having problems with tables. I want the table to be right up in the corner when I'm designing but it persists in sitting about 1cm below the top and 1cm to the site. Specifying height and width doesn't make and difference! Anyone know?
You have to remove the page margins within the body tag. To do so add the following code which works in IE3.0, Netscape 3+ and IE 4+
In the HEAD segment of your document add:
<!-- Remove margins for IE 4 and 5 -->
<style>
BODY {
margin-left : 0;
margin-top : 0;
}
</style>
In your body tag add:
<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
Topmargin and leftmargin are for IE 3
MarginWidth and marginheight are for all versions of Netscape 3 and above. Note that Navigator 5.0 will probably only support the method used by IE4 and higher.
------------------
Wayne Luke
Internet Media Provider
Bookmarks