Hi Robert,
You have to give the <ol> padding as well as give the <li> a bullet list-style-type
The rule that is giving the <ol> 0 padding is still in place
ol, ul {
margin: 0px;
padding: 0px;
}
You have to give the <ol> some left padding (40px), or remove this rule altogether, for the bullets to be visible.
Phil