different resolutions

liunx

Guest
Greetings all!<br />
I hope everyone had a great holiday!<br />
Ive got a problem here. Ive laid out my page in css and everything looks great, EXCEPT that I have a table in the main body of the document (inside the header, navbar, and right side ) the problem is that in 800X600, it works great, in a bigger resolution, this table wants to align itself in the center of the screen, not within the margins. this is probably something really stupid on my part but its got me baffled.<br />
<br />
Thanks everyone!<br />
<!-- m --><a class="postlink" href="http://www10.brinkster.com/liskafamily">http://www10.brinkster.com/liskafamily</a><!-- m --><br />
<br />
heres the css:<br />
<br />
.layout{margin: 102px 165px 10px 155px}<br />
<br />
.navbar{position:absolute;top: 102px;left: 5px;width: 130px;height: 1500px;padding: 10px 0px 0px 5px;text-align:left;background-color:#999966;border-right: solid 2px #666633;border-top: solid 1px #666633}<br />
<br />
.header{position:absolute;top: 5px;left: 2px;width: 770px;height: 50px;padding-left: 1px}<br />
<br />
.rside{position:absolute;top: 102px;left: 650px;width: 125px;height: 1500px}<!--content-->greetins again!<br />
forgot to mention.there no DTD or character settings loaded on this document yet.....im just testing it.....I know I know....stupid!!<br />
<br />
Thanks again!<br />
Michael<!--content-->Originally posted by michael liska <br />
forgot to mention.there no DTD <br />
<br />
Neighter IE/Win 6, IE/Mac 5 nor Gecko browsers will handle your CSS correctly if you are missing a compleat and correct STRICT doctype.<br />
Thus next time make sure to add it before finding errors.<br />
<br />
In any case your problem is probably due to this<br />
<table align=center<br />
<br />
BTW, if you would have had eg this doctype<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><br />
and tested your page at <!-- m --><a class="postlink" href="http://validator.w3.org">http://validator.w3.org</a><!-- m --> that deprecated attribute would have shown up in the validator. <br />
Remember, the validator is your friend in helping to find weird problems depending on coding errors :)<!--content-->sorry for the delayed "thank you" but THANK YOU!<br />
I was a little ahead of myself in uploading the documents and didnt even realize that I didnt have the DTD in the document.<br />
anyway, got it working .............<br />
thanks again!<br />
<br />
Mike<!--content-->
 
Back
Top