Site logo

[Support request] I want Simiar kind of Number style in my website

Home Forums Support [Support request] I want Simiar kind of Number style in my website

Home Forums Support I want Simiar kind of Number style in my website

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2422782
    Kartik

    This is my Website
    https://fifafootballworldcup.live/fifa-world-cup-live-on-google-chromecast/
    https://ibb.co/sQcBwJq

    I want there below type of numbring css
    https://ibb.co/dc6kNcG

    What css code have to enter there

    #2422815
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    
    ol {
        list-style: none !important;
        counter-reset: item;
        margin-left: 0 !important;
        padding-left: 2.4em !important;
        position: relative;
    }
    ol li {
        counter-increment: item;
        padding-bottom: 0.35em;
    }
    ol li::before {
        position: absolute;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 1.2em;
        height: 1.2em;
        padding: 0.8em;
        margin-right: 10px;
        content: counter(item);
        background: #482d70;
        border-radius: 100%;
        color: white;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.