I feel like this is a very basic CSS question:
There seems to be a hidden "margin-top" in my CSS, which shows up in FF and Chrome, but not IE. This is the page: adambailin.com/projects
I want the project title to line up with the image. Each project is in a #project div (thin white border-top). The css for the image is
#project_image
{
float: left;
width: 150px;
height: auto;
padding: 2px;
border: solid 1px #7E8AA2;
}
And the css for the description part is
#project_desc
{
float: right;
width:425px;
}
Any ideas are greatly appreciated!