Sorry, I know there is no Garland BIDI theme for Drupal 6, but I didn't know where to post a bug report for the core Drupal 6 theme.

Anyway, if you try to make a few nested lists, the bullets for the list will not indent properly.

For example, something as simple as

<ul>
 <li>Header One
  <ul>
   <li>Header Two
    <ul>
     <li>Header Three</li>
    </ul>
   </li>  
  </ul>
 </li>
</ul>

Will result in the attachment included.

CommentFileSizeAuthor
garland_lists_bug.jpg6.05 KBcjeanson

Comments

cjeanson’s picture

I checked into my site and edited the .css file that was generated by Drupal and have fixed the issue.

However, I don't know how to actually apply this in a patch form so that future CSS generation will not have to be fixed again.

In the relevant css file before:

ol li{padding:0 0 .3em;margin-left:2em;}

It is creating the list item margin, but not padding in the actual text away from the bullet. Easily fixed below:

ol li{padding:0 0 .3em;margin-left:2em;padding-left:1.5em;}

[Edit: I should note that I used the same amount of padding-left that is generated in single level list elements so everything matches well.]

cjeanson’s picture

Project: Garland BIDI » Drupal core
Version: 5.x-2.x-dev » 6.0
Component: Code » Garland theme

moving to the proper section

dvessel’s picture

Status: Active » Closed (works as designed)

Can't reproduce. Definitely not an issue with Garland in core.

Shevchuk’s picture

ul li, li 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.png) .5em .7em no-repeat; /* LTR */
}

ol li, li ol li {
  padding: 0 0 .2em 0;
  margin: 0.15em 0 0.15em 2.2em;
}
TheComrade’s picture

Same problem. Exactly as poster's screenshot shows.

Ubuntu 8.10, Firefox 3.0.7, problem is apparent from the very first Drupal install page.