I have the following list:
<ul id="otis">
<li>Benz</li>
<li>Other Benz</li>
<li>Other Other Benz</li>
</ul>
I want to get rid the bullets so i tried:
ul#otis {
list-style-type: none;
}
That didn't work though. What is the proper way to remove the bullets from the displayed list?
I had the same extreme irritating problem myself since the script did not take any notice of my styelsheet. So I wrote:
That did not work. So, in addition, I wrote:
Voila! it worked!