i have this menu:
$menu['talent'] = array(
array('id' => 'welcome',
'label' => 'My Profile',
'uri' => '/profile/,
'class' => 'navlink'
)
),
array('id' => 'welcome',
'label' => 'My Profile',
'class' => 'navlink',
'uri' => '/profile/
),
);
this will end up looking like this:
<ul>
<li><a href="" class="navlink">My Profile</a></li>
<li><a href="" class="navlink">My Profile</a></li>
<ul>
how can i change the ul
into a div
and also the li
into something else?
any idas?
Thanks