[help] webpage height issues

Okay, I don't want to sound like a complete idiot; but, I'm working a webpage, I don't really know how to actually "make" them but I'm piecing it together interface wise and I've done a little coding blah blah

Okay, so I have it essentially put together but the main table that everything else is in is 100% (height wise) meaning it should stretch to fit the browser no matter what size it is, however when I load the page it is cut off a little at the bottom; and when I refresh the page it stretches to fit the page as it's supposed to. As soon as I click the home button and reload it it's back to being cut off, once i refresh it's fixed.

I'm stumped lol

I'd appreciate a quick reply since I'm sitting here trying to figure this out as we speak.

Thanks in advance.

#266452

Hmm...try adding a margin-bottom: 5 px.

(Are you using CSS, or what? Also, what browser are you using?)

-NC

#266453

I'm just using plain ol' html and I used css for the rollovers which i should say are FANTASTIC lol

I've tried it mainly in myie/maxthon and I have firefox too I'm yet to actually try it in that though.

EDIT: AHH I think that did it! I added "bottommargin="0"" and I think it fixed it! whew, something as simple as that can really waste a lot of time. Thanks so much!

#266456

first of all no tables

second of all bottommargin is invalid.

i do this on all my sites

body { margin:0; }

#266510