MyBB Community Forums

Full Version: bullet/listing problem (NOT SOLVED)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
[Image: 25fsqid.png]

My lists in my posts (shown above) are not working right. I want them to be the default normal, like this:
  • one
  • two
  • three

but I think something in my css is making them take on characteristics I don't want them to have. Can someone tell me what I need to edit to make my in post lists normal without affecting my other navs and menus?
You probably have a css reset that is taking the list style off the ul selector. If you remove that then the lists in posts will work. However, you may well have to go through the css styles for other uls to apply a css selector to those.

Board url?
Have you installed any MyCode ? Any MyCode related plugin ?? Which one?
http://theisles.crow-nest.com

I haven't installed any mycode, as far as I know.
anyone?
Can you give a link to a post with the issue please?
i made a sample thread with an example list that you can find here:
http://theisles.crow-nest.com/showthread.php?tid=8
please?
i really need help with this... i'd really appreciate if someone would take the time to help me out. thanks!
Your .menu ul and .menu li are applying also in post body (if the html tag with class menu is referred only in dropdown menu and the html tags are closed properly you wouldn't have any problems with ul and li styles in your posts, then the only reason would be that your tags are incorrectly closed.

If you want temp. fix paste this in global.css

.post_body ul {
display: block;
list-style-position: outside;
list-style-type: disc;
margin-bottom: 1em;
margin-top: 1em;
padding-left: 40px
}

.post_body ul li {
display: list-item;
}

Run your site through w3c validator to see output errors.
Pages: 1 2