1
Vote

List formatting doesn't look good (all three styles)

description

Everything is flush left and nested lists don't have enough of an offset and use the same style as the parent. Replace the list styles with the following entries and delete the "ul ul" and "ol ol" entries in all three Presentation.css files.
 
ul
{
margin-top: 1em;
margin-bottom: 1em;
}
 
ol
{
margin-top: 1em;
margin-bottom: 1em;
}
 
li
{
margin-top: 0.5em;
margin-bottom: 0.5em;
}

comments