New to Telerik UI for Blazor? Download free 30-day trial

Remove the Expand Arrow from the Menu Dropdown

Environment

Product Menu for Blazor

Description

When there is more than one item under a menu item an arrow icon is displayed to indicate additional items are below it. Sometimes it may be desirable to remove the icon from the top-level menu item.

Solution

Use the following CSS to set the display to none.

.k-menu-expand-arrow {
    display: none;
}
In this article