By m@rtijn on
I'm trying to add icons to the local task tabs. I thought I could override the theme_menu_local_task theme function and add a css class or id to the
function theme_menu_local_task($link, $active = FALSE) {
return '<li '. ($active ? 'class="active" ' : '') .'id="'.$link.'">'. $link ."</li>\n";
}
Apparently this doesn't work. I found a solution on http://nickvahalik.com/blog/theming-local-task-tabs-drupal-6, but that goes beyond my knowledge.
Is there a (simple) way to add icons to the local task tabs?