



this will remove all icons from all menus
note: restart Firefox to remove artifacts.
edit: added searchbar icons back
I use my own styling codes that won't remove essential items, here is the suggestion :
/* ..... Hides Icons ..... */
menuitem[type="checkbox"] > hbox > .menu-iconic-icon, menuitem[type="radio"] > hbox > .menu-iconic-icon { visibility: visible !important; }
menu:not(.bookmark-item):not(.folder-icon) > .menu-iconic-left, menuitem:not(.bookmark-item):not(.folder-icon):not([id^="tasksMenu"]) > .menu-iconic-left { visibility: hidden !important; height:16px !important; }
/* .... End ... */
If you've installed "MR Tech Local Install", and prefer to show items in the menubar (for extension manager), these should be added:
menuitem[id="embuttonExtensionsMenu"], menuitem[id="embuttonThemesMenu"], menuitem[id="infolister-buttonMenu"] { visibility: visible !important; }
OR modify the last :
menuitem:not(.bookmark-item):not(.folder-icon):not([id^="tasksMenu"]):not([id="embuttonExtensionsMenu"]):not([id="embuttonThemesMenu"]):not([id="infolister-buttonMenu"]) > .menu-iconic-left { visibility: hidden !important; height: 16px !important; }
This works beautifully and is exactly what I was looking for. Thank you. Is there some way to allow the searchbox drop-down menu (search plugins) to show images while still forbidding all the rest?
------
Perfect!