Site logo

Archived topic

Bullet points and numbered lists

7 replies · Started by Amer on July 6, 2022

Viewing posts 1–8 of 8

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

Hi there,

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

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

Add this CSS:

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

Thanks it is worked

How I can change Space Between Bullets and Elements

also How I can change color and size of bullet points

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.

it is not working

I am using this

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

Thanks

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

This archived topic is closed to new replies.