Why does list-style-type not work ? Nothing was shown instead

fusionm

New Member
CSS and HTML Code is as shown below. I used eric meyer's reset script.. I edited out the one which I think is relevant.\[code\] /* reset CSS script */ol, ul { list-style: none;}/* End of reset CSS script */#navbar { border: 5px solid red; margin: -580px 0 0 160px; width: 1500px; font-size: 26px; font-family: 'Conv_LITHOSPRO-REGULAR';}#navbar ul li { display:inline; padding:0 35px 0 0; list-style-type:disc; }\[/code\]This is the HTML code.\[code\] <nav id="navbar"> <ul id="hli"> <li id="OP"><a href="http://stackoverflow.com/questions/11543179/Orders.html">Your Order</a></li> <li id="MP"><a href="http://stackoverflow.com/questions/11543179/Menu.html">Menu</a></li> <li id="CUP"><a href="http://stackoverflow.com/questions/11543179/ContactUs.html">Contact Us</a></li> <li id="JP"><a href="http://stackoverflow.com/questions/11543179/Jobs.html" target="_blank">Jobs</a></li> <li id="TCP"><a href="http://stackoverflow.com/questions/11543179/TC.html">Terms & Conditions</a></li> </ul> </nav>\[/code\]
 
Back
Top