[Support request] Bullet points and numbered lists

Home Forums Support [Support request] Bullet points and numbered lists

Home Forums Support Bullet points and numbered lists

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2274668
    Amer

    Hello

    when I am using Bullet points and numbered lists there are a big space at the beginning of the line. I want the paragraph as same Bullet points and numbered lists space at the beginning of the line.

    for example: now show like this
    (no space)paragraph abcdef
    (space)*Bullet points abcdef

    I want like this
    (no space)paragraph paragraph abcdef
    (no space)*Bullet points abcdef

    please not I am using RTL

    Thanks

    #2274734
    David
    Staff
    Customer Support

    Hi there,

    can you share a link to a page where i can see the issue ?

    #2276242
    Amer

    Hello

    Just I don not want a space at the beginning of the line in both bullet points and numbered lists

    here is a screenshot to explain what I mean: https://ibb.co/S0hY269

    Thanks

    #2276278
    David
    Staff
    Customer Support

    Add this CSS:

    .entry-content :is(ul, ol) {
        margin-right: 1em;
    }
    #2278455
    Amer

    Thanks it is worked

    How I can change Space Between Bullets and Elements

    also How I can change color and size of bullet points

    #2278850
    Fernando
    Customer Support

    Hi Amer,

    Here’s something you may try adding through Appearance > Customize > Additional CSS:

    .entry-content :is(ul, ol) li::marker {
        color: rgb(255, 0,0);
    }
    
    .entry-content :is(ul, ol) li:before {
        content: "";
        display: inline-block;
        width: 20px;
    }

    Kindly let us know how it goes.

    #2282386
    Amer

    it is not working

    I am using this

    ul {
        text-indent: -11px;
    }
    ul ::marker {
         color: blue;
         font-size: 1em;
     }

    Thanks

    #2282428
    David
    Staff
    Customer Support

    Can you share a link to the page where i can see the list ?

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