CSS: Positioning the text to the right of the bullet in an unordered list
redefine the UL tag. In this case I created a whole new id:
#thisul {
list-style-position: outside;
list-style-type: disc;
margin-left: 30px;
}
Make sure the position is outside and there is a left margin defined for the UL.

