tags:

views:

32

answers:

1
+1  A: 

It's a float problem. Normal elements in the document flow give way to floated elements when the float elements overlap them. You can confirm this by giving #news-item a clear CSS property, and watch the indent disappear.

There is a fix for it, but it's a bit of a kludge. Use these CSS rules:

#news-item {
  clear: both;
  position: relative;
  top: -40px;
}

However, to actually solve the problem, you need to find the offending element.

Yi Jiang
It's in Firefox, Safari and Chrome are ok and so is IE 7.0 according to Chugh97 (Thanks)
Solidariti
Fantastic it worked thank you Yi Jiang.
Solidariti