How do I create an asp:Menu that has a horizontal submenu rather then a vertical one while keeping the top menu horizontal?
|
feedback
|
|
You may want to look into using the CSS Friendly Adapters. The Menu adapter will render the asp:Menu control using semantic HTML (in this case an unordered list) instead of tables, which makes it much easier to apply CSS to make it do whatever you need it to do. | |||
|
feedback
|
|
The asp.net menu just generates a table. Do something like this:
And in your style sheet do something like this:
You can get really fancy by passing all the parameters to asp:menu and giving each static and dynamic menu item a separate class and styling them all up. When all else fails, fix it with jQuery on page load. | |||
|
feedback
|
This solution works with mozilla but not with IE :( | ||||
|
feedback
|