The peekaboo fix employed in Democratica
---
* {
zoom: 1; /* IE peekaboo fix */
}
---
has the effect that in IE, the "expanded" bullets for LI tags in "book" blocks are no longer aligned properly with the text. This is a problem for expanded tags because for large lists the bullet is nowhere near the text for IE. Note: This is only an IE problem. There is no problem with Firefox or Opera. This bug fix is also related to this issue here http://drupal.org/node/21440
You can see the broken effect here: http://www.jeoforms.com/csstest/broken.html . This is using the default democratica stylesheet cleaned up a bit. Note: this error in layout is only with IE.
You can see it fixed here: http://www.jeoforms.com/csstest/fixed.html
The solution is to add (at a minimum) the following to style.css:
li.expanded {
list-style-type: none;
padding: 0;
zoom: 0;
}
Comments
Comment #1
rar commentedClosing Ticket. I've moved to Drupal-5.