Hi! Possibly this issue is connected to the #903256: Views list is snown without dots or numbers
I have installed pure Drupal and set up Corolla theme and there is a problem with how numbered list is shown:
- FF 3.6.9. http://img828.imageshack.us/img828/4780/54087388.jpg
- IE 6 http://img5.imageshack.us/img5/3376/ie6l.jpg
- Chrome http://img52.imageshack.us/img52/1543/chromeww.jpg

As you can see, FF renders list in an odd way. Are there any CSS incompatibility in the Corolla theme?

Comments

Jarek Foksa’s picture

The issue is caused by this rule from system.css:

#first-time strong {
  display: block;
  padding:1.5em 0 0.5em;
}

It could be fixed by adding this to style.css:

#first-time strong {
  display: inline;
}

I will commit it when I find some time.

Jeff Burnz’s picture

Issue summary: View changes
Status: Active » Closed (outdated)