In article
<0432ebfd-b34e-459c-b90c-606d8be98342@m73g2000hsh.googlegroups.com>,
> > > > In article
> > > > <d9c96c76-8f45-4b72-91cb-47dc6da5f...@j22g2000hsf.googlegroups.com>,
[quoted text clipped - 21 lines]
> > > > First thing to do is to fix up errors in the html. For example, you
> > > > cannot have repeat IDs like id="nav-home".
> I have fixed the html problem and even put al the top content in its
> own div so that there are in fact three div's top, middle and bottom.
> Still I don't get it working...
>
> Anybody that can see my problem?
Well, it is *very different* to your alleged model in Matthew James
Taylor. You have position: absolute for body and every kind of css
complication, negative margins and floats and fancy negative text
indents.
Honestly, it would take a very good look to sort it all out. But someone
might care to. I am here only to tell you to consider going back to
matthew Taylor and look how much simpler he has it and see if you can
simplify massively yourself.
(btw... poor practice font-size on body of 10pt. Please do not use less
than 100% on body and for content text. The validation is being held up
by your blockquote text being loose in there, enclose it in a p element
inside. The idea for blockquote is really for long quotes.)

Signature
dorayme
Yorian - 26 Apr 2008 11:22 GMT
> In article
> <0432ebfd-b34e-459c-b90c-606d8be98...@m73g2000hsh.googlegroups.com>,
[quoted text clipped - 48 lines]
> --
> dorayme
I got a little further it had at least partly to do with the margin I
had on the h1 having a margin at the top. Replacing it with a padding
helped but I still have a little bit of scroll which shouldn't be
there. I simplified my stylesheet a little as well (removed the
position absolute and did the margin: 0; padding: 0; for all
elements). I will change the blockquote, but first I'll try to design
correct
Yorian - 26 Apr 2008 11:56 GMT
> > In article
> > <0432ebfd-b34e-459c-b90c-606d8be98...@m73g2000hsh.googlegroups.com>,
[quoted text clipped - 56 lines]
> elements). I will change the blockquote, but first I'll try to design
> correct
Alright finally got it, it had to do with address, its size was larger
than the surrounding box therefor stretching it.
dorayme - 26 Apr 2008 12:07 GMT
In article
<4c71e951-bfa1-4a5e-b8ae-295e9a8fd2e0@t54g2000hsg.googlegroups.com>,
> > In article
> > <0432ebfd-b34e-459c-b90c-606d8be98...@m73g2000hsh.googlegroups.com>,
> > > Anybody that can see my problem?
> >
[quoted text clipped - 20 lines]
> elements). I will change the blockquote, but first I'll try to design
> correct
Just some things to consider, no particular order...
Look up the CSS 2.1 specs and notice what the defaults are on the
elements, you do not need to put them in, that will simplify your css
text. For example, repeat is default for bg images and so is starting
top left. No need to put this in. Ditto with 100% widths on some
elements. (Though there are some situations where it helps to avoid some
IE 6 bugs)
It is not generally advisable unless you are quite experienced to zero
all the margins and paddings with the wildcard *. You then have to
carefully specify for everything again.
Beware of things like line-height: 85%; and font-size: 8pt; (this is
just too small altogether and do not use pts anyway).
Why repeat the menu in a footer? And anyway, it looks awkward having it
*half* in line with the address. Best to drop the menu altogether down
there.

Signature
dorayme