This is a migrated thread and some comments may be shown as answers.

RadWin

3 Answers 73 Views
Window
This is a migrated thread and some comments may be shown as answers.
July
Top achievements
Rank 2
July asked on 13 Dec 2011, 07:30 PM
This is a Radwindows :-) with Statusbar = false and TitleBar = false.
I put a Button with position absolute to simulate Close Button.
I need change the double border by thick border
I search in windows.css but  I didn't found where set this border.



Can you help me?

3 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 14 Dec 2011, 05:32 AM
Hello,

Try the following CSS.

CSS:
<style type="text/css">
 .rwTitlebar,.rwFooterCenter,.rwCorner
  {
    background-image:none !important;
    background:Blue !important;
  }
</style>

Thanks,
Princy.
0
July
Top achievements
Rank 2
answered on 15 Dec 2011, 12:16 AM

Does not work in the top!

regards
0
Princy
Top achievements
Rank 2
answered on 15 Dec 2011, 05:43 AM
Hello,

It worked as expected at my end. Here is the sample code and screenshot.
ASPX:
<telerik:RadWindowManager ID="RadWindowManager1" runat="server">
    <Windows>
        <telerik:RadWindow ID="Window1" runat="server" VisibleOnPageLoad="true" VisibleStatusbar="false" VisibleTitlebar="false" Width="600px">
         </telerik:RadWindow>
    </Windows>
</telerik:RadWindowManager>

CSS:
  <style type="text/css">
   .rwTitlebar, .rwFooterCenter, .rwCorner
    {
     background-image: none !important;
     background: Blue !important;
    }
</style>

Thanks,
Princy.
Tags
Window
Asked by
July
Top achievements
Rank 2
Answers by
Princy
Top achievements
Rank 2
July
Top achievements
Rank 2
Share this question
or