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.
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
Hi
I used this code, however i have diff margins from line 2 – how can i adjust left margin?
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;
}