What I am trying to do is set the color of the inside of the radwindow. The skin I have set as Web20, but for what resides on the inside of the radwindow i want the color to the antiqueWhite. I have tried applying a css style but it does not take even if I put important.
<
telerik:RadWindowManager
ID
=
"rwManager"
runat
=
"server"
CenterIfModal
=
"true"
Modal
=
"true"
Animation
=
"FlyIn"
Behaviors
=
"Close"
Skin
=
"Web20"
VisibleStatusbar
=
"false"
>
<
Windows
>
<
telerik:RadWindow
ID
=
"rwdelete"
runat
=
"server"
NavigateUrl
=
"~/MAC/Delete.aspx"
Width
=
"600px"
Height
=
"300px"
ShowContentDuringLoad
=
"false"
CssClass
=
"rwDelete"
></
telerik:RadWindow
>
<
telerik:RadWindow
ID
=
"rwChange"
runat
=
"server"
NavigateUrl
=
"~/MAC/Change.aspx"
Width
=
"800px"
Height
=
"600px"
ShowContentDuringLoad
=
"false"
></
telerik:RadWindow
>
<
telerik:RadWindow
ID
=
"rwNew"
runat
=
"server"
NavigateUrl
=
"~/MAC/NewUser.aspx"
></
telerik:RadWindow
>
</
Windows
>
</
telerik:RadWindowManager
>
.rwDelete {
background-color:antiquewhite !important;
}
I applied to the div that sits on the inside of the window and this works but it does not fill the whole inside of the radwindow.