Hai guys,
Error div is placed under menu div when there is no runat="server".... But When i give Runat="server" Error div placed to the right of menu div.. any suggestion for placing error div under menu div
<div id="content">
<div id="menu">
</div>
<div id="ErrorDiv" runat="server">
</div>
</div>
css:
#content
{
clear:both;width:100%;float:left;
}
#menu
{
clear:both;float:left;padding-left:15px;width:70%; height:37px;
}
#ErrorDiv
{
clear:both; width:75%;float:left;
}