I’ve seen a couple of threads with solutions to producing a bulleted list that’s unindented but they don’t seem to work for me.
Just to clarify, I’d like a bullet that lines up on the left with the ordinary text above it, with the bullet text in its own block just to the right of it.
I’ve tried the ‘Extended’ name and value route but my list remains stubbornly indented. Must be doing something wrong!
This will make all lists on the page bulleted but unindented
ul { padding-left: 0px; }
li { list-style-position: inside; }
If you needed to target a specific item (eg a div) containing a list then copy the name from the inspector eg: myList and then create a new style and add this to the Tag field within the edit styles window.
#myList ul { padding-left:0px; } #myList li { list-style-position: inside; }