Blazor menu style customization

Hi All,

I want to use your blazor menu control but I have to remove this symbol "^" from menu item which have children items. How to handle it ?

Thank you in advance!

1 Like

Hi @Vesko_I,

You can use CSS to customize anything. Right-click the component and choose 'Inspect element'. Then find the DOM element and see what CSS attributes to tweak.

In this case you can set the display CSS attribute of the .navigation-item-icon-children class to none. Add the following CSS rule to your application style.css file.

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