By akakoko on
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
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
style it
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
I also added
I also added 'list-style-type: none;' to get rid of the marker-type.
Thank you very much for your help.