Site logo

[Support request] Style Numbered List

Home Forums Support [Support request] Style Numbered List

Home Forums Support Style Numbered List

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1937578
    Matias

    Hello all.
    I have some numbered list that I want to give some style.
    How Can I add some margin-right and border-right to numbers from custon css?
    All code that I have found doesnt work properly.
    Thanks

    #1937794
    David
    Staff
    Customer Support

    Hi there,

    there is very limited control over the styling of the automatic numbers from a list, particularly adding borders.
    Do you have an example / mockup of how you want it to look and we can see whats possible.

    #1938126
    Matias

    I would like to do something like the link that I have add in private information area.
    thank

    #1938165
    David
    Staff
    Customer Support

    Try adding this CSS:

    .entry-content ol {
        list-style: none;
        margin-left: 0;
        padding-left: 35px;
        position: relative;
        counter-reset: section; 
    }
    .entry-content ol li:before {
        content: "";
        counter-increment: section;
        content: counter(section);
        padding-right: 10px;
        border-right: 1px solid #ff0000;
        position: absolute;
        left: 0;
    }
    #1938211
    Matias

    Great.
    Works fine. Thank David

    #1938230
    David
    Staff
    Customer Support

    Glad to be of help!

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