Display Bullets In Sidebar Sections
Example: Display bullets in unordered lists within sidebar sections.
Note: You can specify circle, disc or square bullets in the code below and adjust or omit margins to your preference.
In Custom CSS put:
.section ul li {
list-style-type: square;
list-style-position: inside;
margin: 10px 0px;
}


