Removing the arrow in the Menu/MenuItem

Is there a way I can remove the arrow in the Menu/MenuItem?

Yes, you can hide it with CSS.

.rz-navigation-item-icon-children {
     display: none;
}

@korchev...thanks for the prompt reply...I am using the Radzen.Blazor NuGet package. Is there an alternative solution? I don't believe I have access to the css file.

You don't need access to the css file. You need to put this CSS rule in your own application's CSS file.

1 Like