How to remove icon on Navmenu using css

Dnn menus can populate with icons when the icons are set from the admin area.  But sometimes you might want to not show the icons even when the icons are set for the pages. You want complete control from the css within the skin itself. Here is  how you can achieve this.

1. Set the Property of dnnMenu CssIcon as example below.

2. Change the simple css on the stylesheet file. 

Using this technique you can hide the icons of the dnn menu using css properties.

Codes are given below:

DNN menu on skin file

		 

style class on skin style sheet

		

.main_dnnmenu_icon
{

display:none;

}
 
blog comments powered by Disqus