CSS/XHTML fix

Hi there,

I think the problem is basically, you shouldnt set a float on an item that does not have a height. Use the style below for #image (the addition is bold):

#image {
float: left;
clear: none;
margin: 0px;
padding: 0px;
height:220px;
}

Hope that helps.
 
Back
Top Bottom