I'd like to wrap the side menu in some different divs, in order to apply a "sliding doors" css design to the menu. When the sidebar is generated with print $sidebar_left; the menu is put in one div (div id="block-menu-50" class="block block-menu").
Can anybody tell me how or where I can change the menu related output that is generated by 'print $sidebar_left;'?
I seem to go in circles through the documentation without finding what I am looking for...

Thanks!

Comments

dman’s picture

http://api.drupal.org/api/function/theme_menu_item/5

theme_menu_*() functions, you may need to do a few of them to get what you want.
theme_menu_tree, theme_menu_link.... Use the API search.

Copy the funcs directly into your template.php file. Rename them appropriately, then make your changes.

.dan.
How to troubleshoot Drupal | http://www.coders.co.nz/

jefke33’s picture

Thanks dman, that's exactly what I needed to know...