Stretch list

Posted in: Newspaper
Post count: 60

Hi,

how to stretch this list: https://prnt.sc/s9lecj
I want every “lorem ipsum” to have more height/more free space between each other.

Post count: 35449

Hi,

If that is a list element from tagDiv Composer, then you can make the settings on text from here -> https://i.imgur.com/3ry00vQ.png

Hope this will help you!
Thank you!

Post count: 60

That’s a list from Gutenberg. Just a simple list in Gutenberg, so I think what I need is a custom css code?

Post count: 60

Ok, found it.
Just needed to change line-height here: https://prnt.sc/saoemo

How to put in center all lists in css?

I was trying this:


ul{
text-aling: center;
}

but I want text-align to stay same just to put all lists to the center.

Post count: 35449

Hi,

For this you need to add a class on the list you want to align in center , like this -> https://i.imgur.com/VBBahlI.png and set in theme panel> custom code> custom css the code -> https://i.imgur.com/PloKQZN.png the results will be -> https://i.imgur.com/iUnlGTD.png
.ccc {
text-align: center;
list-style: inside;
}

You can change the class name and set this class on all lists you want to be aligned center.

Thank you!

Post count: 60

Got it. Thank you! 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.