Site logo

[Resolved] Left align list – CSS

Home Forums Support [Resolved] Left align list – CSS

Home Forums Support Left align list – CSS

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

    I have added check marks to replace bullet points on the list on my homepage (see private link) using this CSS:

    .entry-content ul {
    list-style: none;
    }
    .entry-content ul li:before {
    content: ‘✓ ‘;
    color: #6bbf4f;
    }

    The list appears to have indented itself

    Could you help me return the list to be in line with the left-aligned text above it?

    #1816408
    David
    Staff
    Customer Support

    Hi there,

    change your first CSS rule to this:

    .entry-content ul {
        list-style: none;
        margin-left: 0;
    }
    #1816477
    CRAIG

    thanks

    #1816516
    David
    Staff
    Customer Support

    Glad to be of help

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