I have a list..
<ol>
<li>Login</li>
<li>Address</li>
<li>Shipping</li>
</ol>
It shows the decimal numbers fine, but when I set the <li> to inline or inline-block, the numbers vanish! I saw other places online mentioned that I have to ensure I have enough margin and padding.. and I am sure that I do (10 px of each!) Is there some other reason the numbers might be disappearing? I know from firebug that as soon as I uncheck 'inline' they come back...
the css is
ol{
padding: 20px;
list-style-type:decimal;
}
ol li {
display: inline;
margin: 0 10px;
padding: 0 10px;
}