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

Bold Parent Menu Font

2 Answers 120 Views
Menu
This is a migrated thread and some comments may be shown as answers.
dhuss
Top achievements
Rank 1
dhuss asked on 27 Jan 2011, 10:15 PM
I have a custom control that contains a radSkinManager, radScriptManager and a radMenu. This control is on every web page. My client wants the "Default" skin applied and the font on the menu set to bold. I have set the radMenu property "Font-Bold='true'" but the skin overrides this and turns off the bold. How do I get around this??

2 Answers, 1 is accepted

Sort by
0
Kalina
Telerik team
answered on 01 Feb 2011, 11:13 PM
Hi dhuss,

In order to make bold the font of the parent RadMenu items - please override the css  styles applied to these items:
div.RadMenu_Default .rmItem .rmLink
{
    font-weight: bold;
    color: rgb(0, 0, 0);
}
div.RadMenu_Default .rmItem .rmLink .rmExpandDown
{
    font-weight: bold;
}
div.RadMenu_Default .rmGroup .rmItem .rmLink
{
    font-weight: normal;
}

If you prefer to make the font of all items bold – just change the last overriden style:

div.RadMenu_Default .rmItem .rmLink {
 
font-weight: bold;
color: rgb(0, 0, 0);
 
}
 
div.RadMenu_Default .rmItem .rmLink .rmExpandDown {
 
font-weight: bold;
}
 
div.RadMenu_Default .rmGroup .rmItem .rmLink {
 
font-weight: bold;
}

Best wishes,
Kalina
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
dhuss
Top achievements
Rank 1
answered on 02 Feb 2011, 12:15 AM
That worked, thanks
Tags
Menu
Asked by
dhuss
Top achievements
Rank 1
Answers by
Kalina
Telerik team
dhuss
Top achievements
Rank 1
Share this question
or