I am using a RadWindowManager for 2 different popups on my page. I took the 'black' skin and created my own called "OnlineStore". The first popup is a regular popup window and works fine.
The second popup is a radalert. But I want to change the background to be white rather than the black.
I have tried 2 different RadWindowManagers, and other things.
I have changed the font color and removed the warning symbol on the radalert by adding this to my custom skin:
.RadWindow_OnlineStore .rwWindowContent .radalert { font-weight: 500; color: white; background-image: none !important; /* takes out the yellow triangle warning symbol*/ background-color: White; }
<telerik:RadWindowManager ID="rwm" runat="server" Skin="OnlineStore" EnableEmbeddedSkins="false"> <Windows> <telerik:RadWindow ID="rwAddlOptionsAndEquip" runat="server" NavigateUrl="PnPAddlOptionsEquip.aspx" ShowContentDuringLoad="False" KeepInScreenBounds="true" VisibleTitlebar="true" Title="Additional Services and Equipment" Modal="true" VisibleStatusbar="False" Left="100" Top="55" InitialBehavior="None" Width="999px" height="690px" BorderWidth="1" Behaviors="Close, Move, Resize" > </telerik:RadWindow> </Windows> </telerik:RadWindowManager>I just can't figure out how to make the background white. I want to keep the titlebar black. Any suggestions?