The latest version (as of today anyway) has a small error in the generated template. An error in the css code. The bullet icon for the list items doesn’t show up. To fix it find the following styling rule in your style.css file. You can do this in WordPress using the theme files editor.
.art-BlockContent-body ul li
{
font-family: Arial, Helvetica, Sans-Serif;
font-size: 12px;
text-decoration: none;
line-height: 125%;
line-height: 1.25em;
padding: 0px 0 0px 13px;
background-image: url(‘../images/BlockContentbullets.png’);
background-repeat: no-repeat;
}
Change the image name from “BlockContentbullets.png” to “BlockContentBullets.png” (just change lowercase b in bullets to uppercase B) in the following line:
background-image: url(‘../images/BlockContentbullets.png’);


Related Posts:
This has been fixed in their latest update.