inove Theme CSS bug in Page content

25. November 2008

We're using the excellent inove Theme from onesoft.dk for hosting page content within our web & community site.

We use Pages to store static content, for example, providing an overview of the products we provide consultancy and support. We spotted a difference (bug) between how Blog posts display text (numeric or bullet) list:

This Blog Post will show a list correctly, so:

  1. Apples
  2. Bananas
  3. Oranges
  4. Pears

and

  • Apples
  • Bananas
  • Oranges
  • Pears

This displays incorrectly with identical content within a page. Demonstration here and below:

 

The Theme's style.css includes the following global parameter which is not overridden for Page:

* {
    margin:0;
    padding:0;
}

We add the following CSS directly after the above and this seems to correct the lists.

ol, ul {
    margin:20;
    list-style-position:inside;
    padding-left:20px;
}

There are certainly other anomalies that are still to be tied down. Paragraph text also appears incorrect. An update when we've tracked that one down.

Nick Harrington

BlogEngine.NET