By ms1 on
Hi
I have created a menu and placed it in footer region. But like other menus it also displays one menu item below the other, each having bullets.
I was trying to remove the bullets and make the menu items inline, but I am stuck.
I could do this in 5.x by creating a file block-footer.tpl.php and putting the code
<?php print theme('links', menu_primary_links(0,$block->delta)); ?>
but its not working here.
Similarly I tried CSS
a)
I found the menu item name using firebug (it is block-menu-menu-footer-links)
and placed the following code in style.css
#block-menu-menu-footer-links ul li{
list-style-type: none;
display: inline;
}
but it does not work too. The bullets stay and the menu item moves into the next line form the bullet, each pair stacked over one another.
Can anyone please help.
Regards