This is my dev site : http://dev.unixperformance.ca

And Im trying to remove the solid black bullets beside the menu. Im using ZEN and nice_menus on Drupal 6.2. Any help would be of great use. thank you!!!

Comments

joachim’s picture

Your site isn't loading, but I'd say first of all, install Firebug. Second, from my experience, hard to kill bullets might be a) set with css background, or b) set with list-style-type but on an LI instead of the UL or vice versa.

Hotwire’s picture

Theres no firebub for Drupal 6, or at least I couldnt find it.

and Iv tried killing the bullets via CSS and with list-style-type. :(

joachim’s picture

simon.males’s picture

So you mean the Create new account/Request new password links?

The styling is coming from html-elements.css from your Zen theme.

  .item-list ul li /* Drupal override */
  {
    margin: 0;
    padding: 0;
    list-style: inherit;
  }

Disabling that (assuming my Firebug testing is correct) should do it.