Change list style in Neve
By default, Neve uses open circles for unordered list items; you can switch to solid black dots with a simple CSS snippet in the Customizer.
Before
By default, Neve uses circles for unordered lists, as seen in the image below:

After
To change the list style to a black dot, add the following CSS code in Appearance > Customize > Additional CSS:
.excerpt-wrap ul, .nv-content-wrap ul {
list-style-type: disc !important;
}The lists will show up like this:

