Based on a suggestion here on the Atahualpa forum, I added some CSS Insert code to create bullets (discs) next to my right sidebar list items. Here's what I added:
div.widget ul li {
display: list-item !important;
list-style: disc !important;
list-style-position: inside;
color: #2D85BA;
}
If you look at the right sidebar on my site, toawaken.org, you'll see it worked fine. Now I'd like to move each bullet a bit to the right, i.e., closer to the text of each LI, and further away from the black border line separating the sidebar from the center column main body text. Any suggestions?