list-style-position of bullets
How can I change the list-style-position from inside to outside for the bullets on my website? For example, I want the second line of a <li> to indent to line up under the first line of text (where the bullet itself is completely to the left of all text). Currently, the second line of text falls directly under the bullet point.
I added the following to my custom css, but nothing changes:
ul {
list-style-position: outside !important;
}
Comments
But, the reason I left the <ul> tag off is because when I use it, the bullets disappear. On the link above, I have added <ul> to the box on the left ("Crowdfunding Models") and the bullets go away. Here's what I have in the content box:
1. I want bullets (adding <ul> deletes the bullets, as stated above).