Hello, I found and started to modify this theme today and I think it is really great(!) but I have some problems (or I might be tired)
Haven't played with Drupal for a while though, testing version 6 at this moment.

Well, by the way...
I want to customize the look of the menu that I have created.
I have played with the .block section in style.css but when I check the code with Firebug, Drupal gets the CSS code from system-menus.css
How do I override this part using the themes style.css? I want to remove the "list-style-type square" for example.

You can find my test site at http://www.tequilarace.net/projekt/tim/

Best Regards, Johan

Comments

fuzzion’s picture

margae’s picture

Status: Active » Closed (fixed)

Overwriting the Drupal core CSS files by copying them into your themes folder works with Drupal 6. For both versions you can overwrite all core CSS settings in your style.css by using the same syntax for the CSS selector as in the core file.

For example you will find the following definitions in system-menus.css:

ul.menu li {
  margin: 0 0 0 0.5em;
}
li.leaf {
  list-style-type: square;
  list-style-image: url(../../misc/menu-leaf.png);
  padding: 0.2em 0.5em 0 0;
  margin: 0;
}

You can overwrite those settings in style.css this way:

ul.menu li {
  margin: 0;
}
li.leaf {
  list-style-type: none;
  list-style-image: none;
  padding: 0;
}