MyBB Community Forums

Full Version: List problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey suddenly there seems to be a bug in my current theme/template

List are displaying this way (both normal and numberd list).

[Image: list_problem.png]

Instead of:
  • Test1
  • Test2
  • Test3
  • Test4

Anybody know what i changed (since i cant remember anything like this) and if so how do i change this back.
Small note.. also using the normal HTML code for list doesnt display it correctly which makes me think its some CSS bug.
You probably added a CSS rule like li { display: inline; }. Posting your forum URL would make it a lot easier for us to know where the error is.
Send you the details how to login
Find and remove this from your global.css:

.menu ul {
	list-style: none;
	margin: 0;
}

.menu li {
	display: inline;
	padding-left: 5px;
}

.menu img {
	padding-right: 5px;
	vertical-align: top;
}
Worked instantly and fixed again.

Thank you so much for assiting.