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:
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:
<li style="text-align: left; color: #444444;"><strong>All-or-nothing</strong> – You will not receive any funds and your supporters will not be charged if you do not reach your goal. This can be a good choice for projects that require set funding to enter production.</li></br>
<li style="text-align: left; color: #444444;"><strong>Keep-what-you-raise</strong> – This model is better for projects that have no minimum amount needed to get started. A good example for this type of funding is raising money for philanthropy.</li>
My understanding is that this can be achieved with the "list-style-position: outside" property. I just can't figure out how to apply it on ALL <ul> on my site.
I put all of the lists in <ul></ul> tags on the page above. The bullets in the bottom section did exactly what I am looking for. The bullets in the top grey boxes ("Crowdfunding Models" and "Type of Incentive") disappeared, even though the code includes the code for bullets. (see code in March 20 post above)
We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services.
Cookies are small text files that can be used by websites to make a user's experience more efficient.
The law states that we can store cookies on your device if they are strictly necessary for the operation of this site. For all other types of cookies we need your permission. This means that cookies which are categorized as necessary, are processed based on GDPR Art. 6 (1) (f). All other cookies, meaning those from the categories preferences and marketing, are processed based on GDPR Art. 6 (1) (a) GDPR.
This site uses different types of cookies. Some cookies are placed by third party services that appear on our pages.
You can at any time change or withdraw your consent from the Cookie Declaration on our website.
Learn more about who we are, how you can contact us and how we process personal data in our Privacy Policy.
Please state your consent ID and date when you contact us regarding your consent.
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).