Hi,
I'm developing my new site using the Tanzaku theme, everything works perfectly in all browsers except Internet Explorer (7 & 8). In IE My post's thumbnail blocks are floating on top of each other instead of sitting next to each other!
The page link is here: http://www.mattcable.co.uk/portfolio
I have an screengrab of how it is supposed to look: correct-view
and an screengrab of how it looks in IE: IE-wrong-view
I have tried everything I know of within the CSS to force the grid-item div to display as blocks & float next to each other. The CSS I have on this div is:
div.grid-item {
width:220px;
float:left;
margin: 0 20px 15px 0;
padding: 0;
display:block;
}
This grid-item div sits within a grid-wrapper div which is:
#grid-wrapper {
margin: 30px 0 0;
padding: 1000px 0 0 0; /* Prevent flicker in grid area. Check header.php. */
width: 960px;
}
I'm sure there must be a simple fix? any ideas where i'm going wrong?