the sidebar list style is done with a bckground imge:
https://sweatingthebigstuff.com/wp-content/themes/npacker1/images/BlockContentBullets.png
in the following lines from style.css of your theme:
.art-BlockContent-body ul
{
list-style-type: none;
color: #282B26;
margin:0;
padding:0;
}
.art-BlockContent-body li
{
font-family: Verdana, Helvetica, Sans-Serif;
font-size: 12px;
text-decoration: none;
}
.art-BlockContent-body ul li
{
padding:0px 0 0px 16px;
background-image: url('images/BlockContentBullets.png');
background-repeat:no-repeat;
margin:0.5em 0 0.5em 0;
line-height:1.2em;
}
replace list-style-type: none;
with list-style-type: circle;
and adapt some padding/margins if needed.
and delete the line background-image: url('images/BlockContentBullets.png');
similar for the list items in posts.
replace list-style-type: none;
with list-style-type: circle;
in the style below about 2/3 down in style.css:
ul
{
list-style-type: none;
}
ol
{
list-style-position:inside;
}
.art-Post li
{
padding:0px 0 0px 16px;
line-height:1.2em;
}
.art-Post ol li, .art-Post ul ol li
{
background: none;
padding-left:0;
}
.art-Post ul li, .art-Post ol ul li
{
background-image: url('images/PostBullets.png');
background-repeat:no-repeat;
padding-left:16px;
}
and delete the line with ‘background-image’
hope this works ??