IE problems

On this site Homeseite the Text overlaying the 3 Pictures boxes (the white writting - e.g. MindArt 360° / Denken Fühlen Handeln) is written “on top of each other” in Internet Explorer, it works fine in Firefox and Chrome, how can I fix that?

It’s only in position in Firefox because of the default top margin on the p element.

Remove the top margin and apply the correct top position.


.intro-box .subHeadline {
    color: white;
    font-size: 12px;
    left: 0;
    margin-left: 10px;
    margin-top: 0;
    position: absolute;
  [B]top: 24px;[/B]


}



solved thanks