Do you already have the HTML code added to your site?
If you do, then you can add this to your CSS and it should enable the bullet/disk to show up (it’s disabled by default for li
) –
.front-page li {
list-style-type: disc;
margin-left: 40px;
}
That enables it for any time you use li
on the homepage. If you use li
on other parts of the front page and prefer to keep those without the bullets, then you can create a class and use that instead like this –
HTML –
<ul class="bullets">
<li>text</li>
<li>text</li>
<li>text</li>
</ul>
Then add this code to your CSS –
.bullets li {
list-style-type: disc;
margin-left: 40px;
}
Let me know if that helps