When you enable any menu bullet besides "none" and "Drupal default" the item style images appear in the top menu section.

Comments

Jeff Burnz’s picture

Version: 7.x-2.3 » 7.x-2.x-dev
Assigned: Unassigned » Jeff Burnz

Right, I will take a look, cheers.

AdrianB’s picture

I've noticed this too. I added this to my custom styles:

.region-top-menu ul.menu li.leaf {
  list-style-image: none;
}

It is this code in sky.settings.style.css (this is for arrow head menu bullet style):

.mb-ah ul li.leaf,   
.mb-ah ul li.collapsed,
.mb-ah ul li.expanded {
  list-style-image: url(images/ts/arrow-head.png);
}

that takes takes precedence over this in navigation.css:

.region-top-menu ul.menu li {
  float: left;
  list-style: none;
  list-style-image: none;
  padding: 0;
  margin: 0;
}
AdrianB’s picture

Sorry, forgot about the other two states, make that:

.region-top-menu ul.menu li.leaf,
.region-top-menu ul.menu li.collapsed,
.region-top-menu ul.menu li.expanded {
  list-style-image: none;
}
webavant’s picture

Status: Active » Needs review
StatusFileSize
new860 bytes

I went ahead and made a patch out of AdrianB's solution:

Jeff Burnz’s picture

Status: Needs review » Fixed

Thanks webavant! You're a contributor!

Committed to 7.x-2.x-dev.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.