- This topic has 1 reply, 2 voices, and was last updated 5 years, 4 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Optimal Theme Support › Bulleted List In Front Page 3, 4 & 5
How do I get a bulleted list to show in Front Page 3, 4 & 5? Thank you for your help!
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