Hi there Neatoboy,
in the
index.html file you will see
<div id="content"> which contains the
left side navigation and the
right side text.
Underneath those two areas are...
<img id="forklift" src="images/forklift.jpg" alt="forklift">
<img id="footer" src="images/footer.gif" alt="footer">
The
<div id="content"> is given the attribute
position:relative in the
main.css file.
The two images are given the attribute
position:absolute.
The
forklift image is placed
bottom:0 and
left:0.
The
footer image is placed
bottom:0 and
right:0.
This means that the images will always be stuck at the bottom of the
<div id="content">
whatever the height of the
left side navigation or
right side text.