Hello there
My bullets are aligned but the wording when wrapping is not aligned
How do I make word wrapping align properly?
Hey whdsolutions,
Please provide a link to the site/page in question.
Best regards,
Jordan Shannon
Hi,
Add this to quick css:
ul.niceul li {
/*
* We want the bullets outside of the list,
* so the text is aligned. Now the actual bullet
* is outside of the list’s container
*/
list-style-position: outside;
/*
* Because the bullet is outside of the list’s
* container, indent the list entirely
*/
margin-left: 1em;
}
Best regards,
Jordan Shannon