Hi,
I need to reduce the panel bar item height. I have overwrite in the css file. but its not reflecting in the UI (other chanes are reflecting). Pls help me to achieve this
.RadPanelBar_Web20 .rpGroup .rpLink,
.RadPanelBar_Web20 .rpGroup .rpTemplate
{
color: #000;
background-color: transparent;
background-image: none;
line-height: 5px;
min-height: 5px;
}
* html .RadPanelBar_Web20 .rpGroup .rpLink { height: 5px; }
Thanks,
Jeevitha
I need to reduce the panel bar item height. I have overwrite in the css file. but its not reflecting in the UI (other chanes are reflecting). Pls help me to achieve this
.RadPanelBar_Web20 .rpGroup .rpLink,
.RadPanelBar_Web20 .rpGroup .rpTemplate
{
color: #000;
background-color: transparent;
background-image: none;
line-height: 5px;
min-height: 5px;
}
* html .RadPanelBar_Web20 .rpGroup .rpLink { height: 5px; }
Thanks,
Jeevitha
5 Answers, 1 is accepted
0
Hi Jeevitha,
Just add the !important clause, i.e.
Best wishes,
Paul
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.
Just add the !important clause, i.e.
.RadPanelBar_Web20 .rpGroup .rpLink,.RadPanelBar_Web20 .rpGroup .rpTemplate{ color: #000 !important; background-color: transparent !important; background-image: none !important; line-height: 5px !important; min-height: 5px !important;}* html .RadPanelBar_Web20 .rpGroup .rpLink{ height: 5px !important;}Best wishes,
Paul
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
jeevitha
Top achievements
Rank 1
answered on 27 Nov 2009, 12:39 PM
Thanks Paul
0
jeevitha
Top achievements
Rank 1
answered on 02 Dec 2009, 09:28 AM
I have one more question. how shall we make the font as normal in submenu items. The mian menu items are looks bold if i use the folg code. but this style applied for submenu also. i want my submenu with normal font.
.RadPanelBar_Web20 .rpLink,
.RadPanelBar_Web20 .rpTemplate
{
color: #fff;
font: bold 12px/24px Verdena, Arial, sans-serif;
}
I tried the follg but not worked
RadPanelBar_Web20.rpText
{
font-size:11px;
font-family:Verdana;
font-weight:normal !important;
}
.RadPanelBar_Web20 .rpLink,
.RadPanelBar_Web20 .rpTemplate
{
color: #fff;
font: bold 12px/24px Verdena, Arial, sans-serif;
}
I tried the follg but not worked
RadPanelBar_Web20.rpText
{
font-size:11px;
font-family:Verdana;
font-weight:normal !important;
}
0
Princy
Top achievements
Rank 2
answered on 02 Dec 2009, 10:16 AM
Hi Jeevitha,
Try out the following code instead:
aspx:
css:
Hope this helps..
Princy.
Try out the following code instead:
aspx:
| <telerik:RadPanelBar ID="RadPanelBar1" Skin="Web20" runat="server"> |
| <Items> |
| <telerik:RadPanelItem CssClass="PanelItem" Text="item1"> |
| <Items> |
| <telerik:RadPanelItem Text="subitem1"></telerik:RadPanelItem> |
| <telerik:RadPanelItem Text="subitem2"></telerik:RadPanelItem> |
| <telerik:RadPanelItem Text="subitem3"></telerik:RadPanelItem> |
| <telerik:RadPanelItem Text="subitem4"></telerik:RadPanelItem> |
| </Items> |
| </telerik:RadPanelItem> |
| <telerik:RadPanelItem CssClass="PanelItem" Text="item2"></telerik:RadPanelItem> |
| <telerik:RadPanelItem CssClass="PanelItem" Text="item3"></telerik:RadPanelItem> |
| </Items> |
| </telerik:RadPanelBar> |
css:
| .PanelItem |
| { |
| color: #fff; |
| font: bold 24px Verdena, Arial, sans-serif !important; |
| } |
Hope this helps..
Princy.
0
jeevitha
Top achievements
Rank 1
answered on 02 Dec 2009, 11:43 AM
Thanks Princy it works..