Aligning Numbered and Bulleted Lists
-
I cannot get my numbered or bulleted lists to indent on the 2nd and subsequent lines. I want them to be lined up with the indent of the first line but they just wrap and line up with the number. Here is my css. I tried changing the position to outside but that didn’t work. I also tried selecting unordered list on the visual display but it just brings my first line down one line away from the number. Any suggestions. https://blog.hrcorporateyoga.com/
.entry ul, .comment ul{
list-style: square inside;
margin: 0 0 20px 1.5em;
}
.entry ol, .comment ol{
list-style: decimal inside;
margin: 0 0 20px 1.5em;
}
.entry ol ol, .comment ol ol{
list-style: upper-alpha inside;
}
.entry ol ol ol, .comment ol ol ol{
list-style: lower-roman inside;
}
.entry ol ol ol ol, .comment ol ol ol ol{
list-style: lower-alpha inside;
}
.entry ul ul, .comment ul ul,
.entry ol ol, .comment ol ol,
.entry ul ol, .comment ul ol
.entry ol ul, .comment ol ul
- The topic ‘Aligning Numbered and Bulleted Lists’ is closed to new replies.