Hi,
I have added a drupal menu to my site. I want to alter the html code for only this one menu so that the main menu ul can have a custom ID and CLASS. How can I do this? I have searched the forums, and have tried the instructions here: but they seem to be only for secondary and primary links not other menus. Thanks in advance for the assistance.

1 year 42 weeks ago
The following code snippet would help:
<?php
$menuhtml = theme_menu_tree(182);
return "$menuhtml";
?>
Check this code snippet here for drupal menu theming.
Post Comment