Text next to unnumbered list not aligned

I cannot get the text of my unnumbered lists to sit directly to the right of the dot…

https://codepen.io/NinaLoeterman/pen/MMBNKB

1 Like

Looks like you put your <li> tag before your <ul> tag - give ‘em the ol’ switcheroo and see how it works.
-J

1 Like

Thank you for the tip! It doesnt seem to make a difference though…

1 Like

It does fix it. I’m not sure why you say that it doesn’t work, but you have not done it in the Codepen. You need to fix the last three <ul>.

1 Like

Looks to me like your “Inline” and “Internal” are fixed but you have others to fix as well. Can you give a specific example of which one didn’t work?
-J

1 Like

I went into your code into editor view, and swapped around the ul elements with the li elements so that the li were children of the ul rather than the other way around, and it seemed to fix them.

I have now changed all of them and it is working. Thank you all so much!

1 Like

What about list-style-position: inside; ?