When using the above module which adds AJAX-based tree menu to navigation menu, if the menu have submenu, the list button is doubled.

How do get rid of the original Aberdeen button and use "+" symbol provided by Activemenu

CommentFileSizeAuthor
aberdeen_menu.JPG13.58 KBnajibx

Comments

johnnybegood’s picture

Status: Active » Fixed

Hi,

Look for these lines in style.css:

ul li, ul.menu li, .item-list ul li, li.leaf {
  padding: 0 0 .2em 1.5em;
  list-style-type: none;
  list-style-image: none;
  background: transparent url(images/menu-leaf.gif) no-repeat 0 .35em;
}
ul li.expanded {
  background: transparent url(images/menu-expanded.gif) no-repeat 0 .35em;
}
ul li.collapsed {
  background: transparent url(images/menu-collapsed.gif) no-repeat 0 .35em;
}

and replace each background declaration to

  background: none;

Cheers,

najibx’s picture

Hmm ... how easy with CSS ! Thanks.

I also done change this, so the + sign stay inside the column.

ul.menu, .item-list ul {
margin: 0.35em 0 0 0.5em;
padding: 0;

Anonymous’s picture

Status: Fixed » Closed (fixed)