"Any output of this module, including the menu bar icon, is themable."
What is the best approach on editing the icon? In my case I want to remove it completely without editing the module itself...

Comments

sun’s picture

Title: Remove the icon? » How to customize the admin menu icon
Assigned: Unassigned » sun
Status: Active » Fixed

You have two options to override the admin menu icon:

1) Disable it via CSS in your theme:

body #admin_menu_icon { display: none; }

2) Alter the image by overriding the theme function:

Copy the whole function theme_admin_menu_icon() into your template.php,
rename it to f.e. phptemplate_admin_menu_icon() and customize the output.

Committed this to README.txt.

Anonymous’s picture

Status: Fixed » Closed (fixed)