New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Change Mouse Pointer on MenuItem Hover
This example shows how to change the mouse pointer to a "hand" pointer on menu item hover.
You need to add this CSS rule in the section of the page:
ASP.NET
<style type="text/css">
.RadMenu_Default .rmLink:hover
{
cursor: pointer;
}
</style>