Help Please Desperate

admin

Administrator
Staff member
Can someone help me get this page to line up in netscape like it does in IE<br />
<br />
www3.ns.sympatico.ca/mayor<!--content-->hi, what page do you mean? I didn't see much on the page of the url you posted above ( www3.ns.sympatico.ca/mayor ), however on this page <!-- m --><a class="postlink" href="http://www3.ns.sympatico.ca/mayor/home.html">http://www3.ns.sympatico.ca/mayor/home.html</a><!-- m --> if you need to align your table in the center of your page, you need to set your table inside <center></center> tags.<br />
<br />
IE: <center><TABLE><tr><td>content</td></tr></table><br />
<br />
you also need to clean up the dead html tags on that page. you have opening and closing style tags with nothing inside it, a closing script tag but no opening one, two opening body tags, and an onLoad handler in the second body tag which does nothing (exept causes an error) to begin with.<br />
<br />
Hope this helps you.<!--content-->If you go to www3.ns.sympatico.ca/mayor/home.html<br />
<br />
There you will see a pretty standard page ...centered with a few tables. It looks ok...then when I open the same page in Netscape everything is skewed to the left and not in the center of the page..... I have tried <center> and <p align=center> nothing changes any ideas?<!--content-->Do not use <center>. In HTML 4.0 <center> is deprecated.<br />
Use (surprise, surprise! :)))<br />
<br />
<table align=center ...><br />
...<br />
<br />
or<br />
<br />
<table ... ><br />
<tr><td align=center><br />
<table ... ><br />
...<!--content-->
 
Back
Top