I need to put styles in a Drupal Menu. I have this code:
print theme('links', array('links' => menu_navigation_links($menu_area), 'attributes' => array('class'=> array('nav', 'navbar-nav')) ));
The < ul > have the "nav navbar-nav" style but the < li > have a custom CSS style (menu-7053 first) that I can't touch.
Is there any way to change that < li > style with the print theme function?
Thank you.
