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

remove radwindow icon

5 Answers 1158 Views
Window
This is a migrated thread and some comments may be shown as answers.
Steve
Top achievements
Rank 1
Steve asked on 12 Oct 2009, 08:21 PM
can the radwindow icon in upper left be removed? easily?

I've tried setting the iconurl to different values and "", icon still displays, would like it gone.

5 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 13 Oct 2009, 05:32 AM
Hi Steve,

I tried adding following CSS in order to hide the icon of RadWindow.

CSS:
 
<style type="text/css"
.RadWindow_Default a.rwIcon 
    background-imagenone !important; 
</style> 

-Shinu.
0
Georgi Tunev
Telerik team
answered on 13 Oct 2009, 06:59 AM
Hi Steve,

I believe that the following forum thread will be of help:
http://www.telerik.com/community/forums/aspnet-ajax/window/hide-window-icon.aspx


Sincerely yours,
Georgi Tunev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Steve
Top achievements
Rank 1
answered on 13 Oct 2009, 02:57 PM

thanks for the ideas, likely wouldn't have gotten there without some help pointing me in the right direction.

this worked the best:

 

 

.RadWindow_Black .rwIcon {   
    display: none!important;   
}  
 
 

 

0
Robert
Top achievements
Rank 1
answered on 09 Dec 2011, 09:58 PM
I tried both of the following in IE8 but they did NOT remove the icon:

.RadWindow_Black .rwIcon {   
    display: none!important;   
}


div.RadWindow_Black .rwIcon {   
    display: none!important;   
}

0
Princy
Top achievements
Rank 2
answered on 12 Dec 2011, 05:05 AM
Hello,

I have tried the following CSS to hide the icon and it worked as expected on my end.

CSS;
<style type="text/css">
  .RadWindow_Default a.rwIcon
  {
     background-image:none !important;
  }
</style>

Thanks,
Princy.
Tags
Window
Asked by
Steve
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Georgi Tunev
Telerik team
Steve
Top achievements
Rank 1
Robert
Top achievements
Rank 1
Princy
Top achievements
Rank 2
Share this question
or