Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #987365

    Hello there

    My bullets are aligned but the wording when wrapping is not aligned

    See image here

    How do I make word wrapping align properly?

    #987608

    Hey whdsolutions,

    Please provide a link to the site/page in question.

    Best regards,
    Jordan Shannon

    #987739
    This reply has been marked as private.
    #987943

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.