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

Styling the RadMenu

2 Answers 67 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Bill
Top achievements
Rank 2
Bill asked on 07 Feb 2013, 06:57 PM
I want to be able to accomplish several things with the menu, but am having a hard time trying to figure it out....

Make the font bold
Make the font size larger
Make the border color red
Align the items all the way to the right (instead of the left)

Can someone inform me how I can accomplish this?

Attached, is my markup.

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 08 Feb 2013, 05:06 AM
Hi Bill,

Try overriding the default CSS as shown below.

CSS:
<style type="text/css">
    .RadMenu_Default, .RadMenu_Default a.rmLink
    {
        font: 16px/23px "Segoe UI" ,Arial,sans-serif !important;
        font-weight: bold !important;
    }
    .RadMenu_Default .rmRootGroup
    {
        border-color: red !important;
        float: right !important;
    }
    .RadMenu
    {
        float: right !important;
    }
</style>

Thanks,
Princy.
0
Bill
Top achievements
Rank 2
answered on 08 Feb 2013, 01:42 PM
Thanks Princy, that worked great :)
Tags
Menu
Asked by
Bill
Top achievements
Rank 2
Answers by
Princy
Top achievements
Rank 2
Bill
Top achievements
Rank 2
Share this question
or