MyBB Community Forums

Full Version: How to remove blank lines underneath lists in posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello everyone

When I use "lists" in forum posts, myBB puts three blank lines underneath the list. Even if I start the next paragrapy immediately after the "/list" tag, the forum shows three blank lines under the list. How can I change it so that a list is treated just like any other paragraph, so that only one blank line is used underneath the list?

[Image: 2n7pmqx.jpg]

I'm using the latest version of myBB with the default theme.

Thanks
Samuel
thats because of the margin added to the list tag....

adding a piece of code like this to the global.css would fix it...
ul {
margin-bottom: 0px;
}

but it will affect the list tags on entire forum not just postbit
.post_body ul, .post_body ol {
	margin-bottom: 0px;
}

Would be better Smile