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

Changing text position in Radalert

3 Answers 147 Views
Window
This is a migrated thread and some comments may be shown as answers.
M. R.
Top achievements
Rank 1
M. R. asked on 27 Apr 2010, 09:44 PM
Hello,

I removed the question mark icon from RadAlert using:

 

.rwDialogPopup.radalert

 

{

 

background: url('') no-repeat left center !important;

 

}

as I wanted the text to be aligned towards the left margin of the window.

However, the text didn't shift to the left as I expected, it's still at the same position, close to the center of the form beside the 'invisible ' icon.
How can I shift the text to the left margin of the form?

Thank you,

M. Rusu

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 28 Apr 2010, 08:21 AM

Hi,

Try the folowing CSS and see whether it helps.

CSS:

 
<style type="text/css">  
        .rwDialogPopup.radalert  
        {  
            backgroundnone !important;  
            padding-left0px !important;  
        }  
        .rwPopupButton  
        {  
            margin40px 80px !important; /* set the values accordingly*/  
        }  
    </style> 

-Shinu.

0
Bozhidar
Telerik team
answered on 28 Apr 2010, 12:06 PM
Hi M. Rusu,

Shinu's suggestion is correct. Here is one more with comments added :

.RadWindow .rwWindowContent .radalert
 {
  background-image: none !important; /* removes the excalamtion mark icon */   
 }
.RadWindow .rwDialogText
 {
  margin-left: -55px !important; /* 55px moves the text to the left edge of the window, increase or decrease the value to move left or right */
 }
.RadWindow .rwPopupButton
 {
  margin: 8px 8px 8px -55px !important; /* 55px moves the OK button to the left edge of the window, increase or decrease the value to move left or right */
 }

Regards,
Bojo
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
M. R.
Top achievements
Rank 1
answered on 28 Apr 2010, 04:57 PM
It worked!

Thanks everybody for your help.

Regards,
M. Rusu
Tags
Window
Asked by
M. R.
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Bozhidar
Telerik team
M. R.
Top achievements
Rank 1
Share this question
or