first you must expose the menu tree: (put this in the template.php)
function devavrata_extreme_preprocess_page(&$vars) {
// Generate menu tree from source of primary links
$vars['primary_links_tree'] = menu_tree(variable_get('menu_primary_links_source', 'primary-links'));
}
}
this will expose all the menus and submenus like
ul
li /li
li /li
ul
li /li
li /li
/ul
/ul
then,
you need to use the firebug of firefox to see the ids and class
all you need to do now is to create css definitions like
#primary ul.menu li {} //first level
#primary ul.menu li ul.menu li {} //second level
#primary ul.menu li ul.menu li ul.menu li {} //third level
I use inline-block for the first level, position: absolute for the second, third levels
Hi Michel
Can you attach or copy your theme function?
Ramon
--
Ramon Vilar Gavaldą - http://ramonvilar.facil.cat - http://blog.facilitant.net
Membre de FĄCIL - http://www.facil.cat
Membre de l'esplai SESA - http://www.esplaisesa.org
--
[ Drupal support list | http://lists.drupal.org/ ]