tags:

views:

42

answers:

1

I'd like my theme to display a menu in a completely custom way. What functions should I have to use in my theme code? Is there any good tutorial out there?

A: 

Yes, proceed to api.drupal.org and take a look at theme_menu_tree, theme_menu_item, and theme_menu_item_link. With these overrides, you can change the html that is output by the menu system, and then style accordingly with CSS.

For a tutorial, I would suggest going through the Drupal 6 theming guide.

You might also want to check out this article from palantir, on the menu block module.

Mike Munroe

related questions