increase indent lists

Posted in: Newspaper
Post count: 73

Hello!

Help please, how can I increase indent in bulleted or numbered lists? Example on the screenshot

This should apply to all lists on all pages of the site.

https://yadi.sk/i/SGUoAAZx3YaCDM

Post count: 20688

Hi,

So you want to increase the space between the lines of a bullet list, I could give you a code for that. Something like this
https://www.screencast.com/t/Xl5R9wG5GHwt
Adjust the value as you want, the code can be entered in Theme panel->Custom CSS

.td-post-content ul li,
.td-page-content ul li {
margin-bottom: 30px;
}

It will apply to lists in the page content (pages built with the default WordPress editor) and post content.

Thanks

Post count: 73

entered this code, it works but not on numbered lists. I need the distance in the numbered lists to be increased too.

Post count: 20688

Hi,

Then you can modify the code like this, to include ordered lists as well

.td-post-content ul li,
.td-page-content ul li,
.td-post-content ol li,
.td-page-content ol li {
margin-bottom: 30px;
}

Post count: 6

Thanks! I was about to ask the same questions

Post count: 44

Hi

I used this code, however i have diff margins from line 2 – how can i adjust left margin?

See http://prntscr.com/lscnmw

Post count: 20688

Hi,

That code will simply add some margin below each line of the lists. I could take a look at it, please provide a link to that test page if possible. How does the list look without the code in your case?

Thanks

Post count: 44

Hi Simion

Thank you for reply. Last night i actually found a code you made in another post. Don´t remember exactly where, but this code solved the problem

.td-post-content ul li,
.td-page-content ul li {
margin-bottom: 10px;
}
.td-ss-main-content ul{
list-style-position:outside!important;
}

Post count: 65

Thank You Simon and team. It worked fine 🙂 .

This is exactly I was looking. NewsPaper theme is really easy to make changes as we wish.

Giri

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