If you are seeing vertical bars appearing in your bullet list, then a simple change in the stylesheet will fix this.
Appearance -> Editor.
Click on Stylesheet.
Look for the following code:
Current
art-post ul li, .art-post ol ul li
{
background-image: url(‘images/postbullets.png’);
background-repeat: no-repeat;
padding-left: 13px;/* makes “ul li” not to align behind the image if they are in the same line */
overflow: auto;
}
Change to:
art-post ul li, .art-post ol ul li
{
background-image: url(‘images/postbullets.png’);
background-repeat: no-repeat;
padding-left: 13px;/* makes “ul li” not to align behind the image if they are in the same line */
/* overflow: auto; */
overflow: visible;
}