Topic on Project:Support desk

Summary by AhmadF.Cheema

ul > li {padding-left: 50px;}

YYwiki (talkcontribs)

How can I control the spacing between bullets in a bullet list - making it smaller or bigger?

AhmadF.Cheema (talkcontribs)

Use the following in your Mediawiki:Common.css if you want to change the spacing for all bullet points,

ul > li {
	padding-left: 50px;
}

To change only for some bullet points, include the following in your Mediawiki:Common.css,

.newbp ul > li {
	padding-left: 50px;
}

and then when needed, include the bullet points inside a div element with newbp class. For example,

<div class="newbp">
* foo
* bar
</div>

If by "spacing between bullets", you meant the vertical spacing between rows of list items, use the above techniques with the .CSS code mentioned at Spacing between bullet list rows and How do I set vertical space between list items?.