Geeky Cat has Style
Resolving why bullets don’t display in IE for a blog entry made in a WordPress was quite easy - it boils down to the stylesheet on a Kubrick themed site. I decided to make the unordered bullets circle. Download the stylesheet found within your blog folder/wp-content/themes/default/style.css and edit the list-style: none entry. Replace none with circle or whatever style you want your unordered list to be such as:
html>body .entry ul {
margin-left: 0px;
padding: 0 0 0 30px;
list-style: circle;
padding-left: 10px;
text-indent: -10px;
}
Delete the following lines which uses a special character for the bullet
.entry ul li:before, #sidebar ul ul li:before {
content: “\00BB \0020″;
}
Save and upload the stylesheet to the same folder, and purrr contentedly away.
Leave a Reply
You must be logged in to post a comment.