Using Administration menu Toolbar style 6.x-3.0-alpha3
I get 404 errors due to "/modules/toolbar/toolbar.png" cannot be found.

mistake is in admin_menu/admin_menu_toolbar/admin_menu_toolbar.css
in entries like:
...
#admin-menu-shadow {
background: transparent url(/modules/toolbar/toolbar.png) 0 -85px repeat-x;
...

to fix this - delete all lines begining with "background: url(/modules/toolbar/toolbar.png)"...

that's not permanent, but quick temporary solution.

Comments

cybermache’s picture

a better (not hack module files) way would be to add the following to your theme css file.

#admin-menu-shadow, #admin-menu ul li.admin-menu-toolbar-category > a.active-trail,
#admin-menu li.admin-menu-shortcuts span.toggle, #admin-menu li.admin-menu-shortcuts ul li a.active:hover,
#admin-menu li.admin-menu-shortcuts ul li a.active {
background: none;
}

Since your theme's css file ultimately overrides all other styles this will stop the 404 error from happening.

pobster’s picture

Status: Active » Closed (duplicate)