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

RADMenu without javascript/css effects?

1 Answer 54 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Christoffer
Top achievements
Rank 1
Christoffer asked on 22 Sep 2008, 12:26 PM
Hi all,

Is it possible to use the RADMenu control to just generate an accessible menu and then style the ul/li elements manually?

We want it to work without any javascripts or RADMenu CSS being loaded and we want the menu to be expanded by default - not when the mouse is over the item.

The reason for this is that we want an accessible navigation in SharePoint, and have had issues with the CSS friendly control adapters to ASP.NET.

Thanks,
Chris

1 Answer, 1 is accepted

Sort by
0
Accepted
T. Tsonev
Telerik team
answered on 22 Sep 2008, 01:48 PM
Hello Christoffer,

You can achieve this result by using the following CSS styles:

<style type="text/css">  
        .RadMenu .rmHorizontal,  
        .RadMenu .rmVertical,  
        .RadMenu .rmSlide  
        {  
            display:block !important;  
            height:auto !important;  
            position:static !important; 
        }  
</style>  
 

I hope this helps.

Kind regards,
Tsvetomir Tsonev
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Menu
Asked by
Christoffer
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Share this question
or