Hi,
We have looked into the code you sent to us. The problem was caused by the following styles you applied on the top group:
Code: CSS
.FileManTabStrp
{
position: absolute;
top:120px;
left:2px;
width:80px;
}
Code: HTML/ASPX
<eo:TabStrip ......>
<TopGroup Style-CssClass="FileManTabStrp" ....>
</TopGroup>
</eo:TabStrip>
Generally you should not apply any positioning styles attributes to the top group because the top group is
not the root element of the TabStrip. The top group style is mostly for styles such as border, background, font, etc.
To resolve the issue, move "FileManTabStrp" from TopGroup to an element outside of the TabStrip. For example:
Code: HTML/ASPX
<div class="FileManTabStrp">
<eo:TabStrip ......>
....
</eo:TabStrip>
</div>
This should render the same result on all supported browsers.
Thanks