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

Multiple menu themes

1 Answer 55 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 23 Apr 2012, 01:03 PM
I have a page that uses three RadMenus—one is horizontal and two vertical. I need to use a different properties on the horizontal menu than on the vertical ones. What is the simplest way to accomplish this?

Thanks!
John

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 24 Apr 2012, 07:22 AM
Hi John,

I suppose that you want to apply different css styles to horizontal and vertical menu. Try the following css.

CSS:
<style type="text/css">
    .RadMenu_Default .rmVertical <%--for vertical menu --%>
    {
        border:1px solid Red !important;
    }
   .RadMenu_Default .rmHorizontal <%--for horizontal menu --%>
    {
        border:1px solid Red !important;
    }
</style>

Please elaborate your scenario if it doesn't helps.

Thanks,
Princy.
Tags
General Discussions
Asked by
John
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or