Dear guy!
i found the problem as you said,
Because the main column is using “column” class which definded the LI tag having a image before the text, here is detail codes:
.column ul li {
background: url(../images/bullet.gif) no-repeat 20px 7px;
line-height: 160%;
margin-bottom: 5px;
overflow: hidden;
padding-left: 30px;
}
You would like to remove the image from the LI Tag in the content of article, so you must to make other rule using for override some attributes inside the “column ul li ” rule, and here is the solution:
.article-content ul li {
background: none !important
}
Good luck