A fix for the kubrick theme no bullets with IE 6 or 7 bug

The reason for the bug is that the kubric theme generates list bullets by using a property (”before”) which is part of the CSS 2.1 standard which is not implemented by the IE 6 and IE 7 browsers.

One way to fix this problem is by specifying a different source for the bullet and using the IE conditional comments feature to specify it only for the IE browsers.

This is the code I’m using

<!–[if lte IE 7]>
<style type=”text/css” media=”screen”>
html > body .entry ul {
list-style: circle;
}
#sidebar ul li.page_item {
list-style: circle inside;
}
</style>
<![endif]–>

Leave a Reply