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

change panel bar color

3 Answers 127 Views
PanelBar
This is a migrated thread and some comments may be shown as answers.
appdev
Top achievements
Rank 1
appdev asked on 17 Oct 2008, 09:55 PM
if we are using panel bar with skin=outlook, it will have that blueish color. could we have a property to change that color to something else? i'm not talking about skin but just the color. thanks.

3 Answers, 1 is accepted

Sort by
0
Ed
Top achievements
Rank 1
answered on 18 Oct 2008, 08:24 AM
I think you may have to create a custom skin based on the Outlook skin and alter the colours manually in the CSS files.  Shout if you want details of how to do this.
0
appdev
Top achievements
Rank 1
answered on 18 Oct 2008, 12:44 PM
could you show how to do this? thank you very much.
0
Princy
Top achievements
Rank 2
answered on 21 Oct 2008, 01:35 PM
Hi,

Try the following code to change the color of the RadPanelBar Skin used.
css:
<head runat="server">    
    <style type="text/css"
    .RadPanelBar_[SkinName] 
      { 
     background-color: Red !important;   
      } 
 
    .RadPanelBar_[SkinName] .rpLink 
      {  
         background-color: Red !important; 
      } 
    </style> 
</head> 

Thanks
Princy.
Tags
PanelBar
Asked by
appdev
Top achievements
Rank 1
Answers by
Ed
Top achievements
Rank 1
appdev
Top achievements
Rank 1
Princy
Top achievements
Rank 2
Share this question
or