Remove li tag from wp_nav_menu
What we want it to be like:
[html]
<div class="user_menu"><a href="#">Menu Item 1</a>
<a href="#">Menu Item 1</a>
<a href="#">Menu Item 1</a>
<div class="clear"></div>
</div>
[/html]
Then we can add this to the functions.php:
[php]
<?php
echo strip_tags(wp_nav_menu(
array(‘theme_location’ => ‘primary’,
‘container_class’ => ‘user_menu’,
‘echo’ => false,
‘items_wrap’ => ‘%3$s<div class="clear"></div>’)
), ‘<a><div>’);
?>
[/php]


















