Well, you would need to remove the 'list-style:none;' part from ul so that you can see the bullets show up in, otherwise, that CSS rule is meant to disable bullet display.
In your css, there is some redundancy.. you have list-style:none; listed twice.. one for ul, the other for ol, ul.. I think I would restructure them as such:
ol, ul{
list-style:none;
}
ul{
padding: 0;
margin: 0;
}
li{
padding: 0 0 7px 0;
}
At this point, it should still have bullets hidden, but your CSS would not have any redundancies.. So from here, if you want your ul to display bullets, you can simply remove the ul from list-style: none; like this:
ol{
list-style: none;
}
But this would mean that every ul will display bullets.. Is that what you want?