I have horizontal menu with primary-links where entries link to simple user menus.
Is it possible to hide the default menu icons for individual menus?

Thanks for any help

Comments

finch’s picture

in your style.css file, you can set

#menu li {
list-style-image: none;
}

depends on the theme that you are using, you may need to replace #menu with the proper tag that is used for menus

On Demand Network | Bootstrap Network

akakoko’s picture

I also added 'list-style-type: none;' to get rid of the marker-type.

Thank you very much for your help.