Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Making the entire menu td clickable

5.00/5 (5 votes)
14 Jul 2010CPOL 18.6K  
By default, the asp:Menu generates menu items as hyperlinks. A user can navigate to a page by clicking on the text of the hyperlink. The text will not occupy the entire place for the td hence some part of the menu would not allow you to navigate to the required page.

To make the entire menu area clickable and allow user to navigate to required page on click over the menu item, this trick can be used. You need to apply the following CSS to StaticMenuItemStyle property of asp:Menu item.

C++
<StaticMenuItemStyle CssClass="StaticMenuHeader" />


CSS
.StaticMenuHeader td a
{
    display:block;
    width:100%;
}


This CSS actually makes the width of the internal hyperlink to 100% making the entire area clickable.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)