Hello sixrfan,
Your float is not cleared and it's margin is extending into your footer and moving your xxx over.
Try clearing the floats like this -
Code:
#content {
margin: 0px;
padding: 5px;
width: 890px;
min-height: 415px;
overflow: auto;
}
Removing the bottom margin also works -
Code:
#smile {
background-image: url(pics/anne_smile.jpg);
background-repeat: no-repeat;
clear: left;
float: left;
height: 314px;
margin: 10px 0 0;
padding-right: 5px;
width: 216px;
}
Removing the bottom margin is just to show you what's going on. The correct way to fix this is to clear your floats.
Have a look at
this page that explains how overflow:auto; clears floats for you.