[Support request] How to Customize Bullets-in and Text Selection?

Home Forums Support [Support request] How to Customize Bullets-in and Text Selection?

Home Forums Support How to Customize Bullets-in and Text Selection?

Viewing 2 posts - 16 through 17 (of 17 total)
  • Author
    Posts
  • #942444
    Ravi Dixit

    Hi, David!

    All things are working fine, Except one.

    I want the same space from the left side of the screen to UL.

    As shown in the image: https://ibb.co/mRbszJy (But space width is very high in mobile devices) please help to reduce.

    Here is the screenshot for current UL I am using with your given CSS: https://ibb.co/KLX98jh

    I hope you understand what I am talking about.

    #942742
    David
    Staff
    Customer Support

    So try this instead:

    ul.custom-list {
        list-style: none;
        margin-left: 0.25em;
    }
    
    ul.custom-list li {
        padding-left: 1em;
        position: relative;
    }
    
    ul.custom-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.3em;
        width: 0.3em;
        height: 0.3em;
        margin: 0.2em 0.8em 0.2em 0;
        background-color: #2b60de;
    }
Viewing 2 posts - 16 through 17 (of 17 total)
  • You must be logged in to reply to this topic.