On line 75 of activemenu.module (5.x-0.8), the activemenu.css is added as a theme style, while it should be added as a module style. The current situation makes it impossible to override specific styles from the theme's style.css.
The current
drupal_add_css(drupal_get_path('module', 'activemenu') .'/activemenu.css', 'theme');
should become
drupal_add_css(drupal_get_path('module', 'activemenu') .'/activemenu.css', 'module');
Thanks,
Tony
Comments
Comment #1
antiorario commented