Hi,
Given the aspx and css code below:
Code: HTML/ASPX
<eo:Dialog ID="Dialog1" runat="server" BackColor="White" Height="200px" Width="300px">
<ContentTemplate>
<div class="dropshadow">
This is the content
</div>
</ContentTemplate>
</eo:Dialog>
<div class="dropshadow">
This is the content
</div>
<a href="javascript:void eo_GetObject('Dialog1').show(true);">Show Dialog</a>
Code: CSS
body
{
background:#ffffff;
color:#000000;
}
.dropshadow
{
padding:10px;
border:solid 1px black;
box-shadow:3px 3px 6px #aaa;
}
I have a problem with the drop shadow. In Google Chrome the drop shadow appears on the div and on the dialog as expected. In IE9 the drop shadow only appears on the div - it doesn't appear on the dialog.
Has anyone else had this issue? Is it just a problem with IE or is it a problem between eo:Dialog and IE?
My EO.Web version is 8.0.60.2.
Thanks.