Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #215912

    Hello
    When using bullet points in a text block or icon list text part, is there a way to make the text indented to the same level as the starting point when the text goes on a new line? Here is an example of the text not indenting: http://goo.gl/VZkUWP
    Thanks very much if you can help.

    #216158

    Hey!

    Try adding this code to the Quick CSS:

    .iconlist_content ul {
        margin-left: 0 !important;
    }

    Cheers! 
    Josue

    #216196

    Hi
    Thanks a lot for your quick response; sorry that did not work. Do you have any other possible suggestion?

    Thank you for your help.

    #216201

    Hey!

    Use this code instead:

    .iconlist_content ul {
       display: table;
    }
    
    .iconlist_content li {
       display: table-row;
    }
    
    .iconlist_content li::before {
       content: "•";
       display: table-cell;
       text-align: right;
       padding-right: 6px;
    }

    Best regards,
    Josue

    #216213

    Ok that worked but the bullet points now no longer show up. ?
    Thanks again.

    #216215

    Hey!

    I modified my previous message, use that code instead, if it doesn’t work please provide me with an administrator account so i can look at it.

    Best regards,
    Josue

    #216244

    Hi , thanks a lot that worked perfectly :)

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Bullet points not indented on new line’ is closed to new replies.