I have created a confirm dialog for my application. It is displayed fine in IE, but in FireFox (3.0.5) the title bar (text and close button) appear slightly above the the window frame (half in and half out). I was wondering if anyone else reported this problem and if so is there a solution. I have changed the default template slightly as follows to use our own images and adjust the styles. Would this have any affect on how the modal is rendered in FF? Is it possible to send a screen shot to you? Thanks in advance...
<telerik:RadWindowManager Skin="WebBlue" ID="RadWindowManagerPOPUP" runat="server">
<ConfirmTemplate>
<div class="windowpopup">
<div class="dialogtext"> {1} </div>
<div>
<a onclick="$find('{0}').callBack(true);"
href="javascript:void(0);" >
<img src="../images/Ok.gif" style="border:none;" alt="I Accept" />
</a>
<a onclick="$find('{0}').callBack(false);"
href="javascript:void(0);">
<img src="../images/Cancel.gif" style="border:none;" alt="Cancel" />
</a>
</div>
</div>
</ConfirmTemplate>
</telerik:RadWindowManager>