Hi,
Your are missing the </html> , please check your footer.php
There is something wrong with your 3rd portfolio item named 'functions' that is why it looks messed up in IE. The code duplicates into the parent node somehow. How are you displaying those 3 things (secrets, menus, functions on the lower half of the home page?)
You are also using one-fourth and only have 3 items .. try using one-third. That's why things are jumping where they aren't supposed to, code is expecting to see 4 items, but you provided only 3 portfolio items.
This is one of the lines giving you grief
.fullwidth .one_fourth, .fullwidth .box_small {
width:210px;
}
you need to be using .fullwidth .one_third . Then everything will fit.
Add the code below to custom.css, and you will see in Chrome the images start showing how they are supposed to, and it becomes obvious that the 4th image is needed. The code below will also fix some of the IE problems, probably the 3rd image will fall into place, but 2nd image will be off.
#top .box_small {
overflow: initial;
font-size: 1.2em;
line-height: 1.7em;
margin-right: 33px;
}
#top .fullwidth .box_small {
width: 190px;
}
Thanks,
Nick