Topic: Unordered Lists and Displaying Inline
I have a list I am trying to display inline.
Here is the code.
<ul id="navlist">
<li><a href="javascript: document.cookie='style='; window.location.reload();">Frames</a> <br />
<a href="http://studentorg.ecpi.edu/oswm">By OSWM</a></li>
<li><a href="javascript: document.cookie='style=2'; window.location.reload();">DOS</a><br />
<a href="http://www.richardorobinson.com">By Richard O Robinson</a></li>
<li><a href="javascript: document.cookie='style=3'; window.location.reload();">Gears Of War</a> <br />
<a href="http://www.richardorobinson.com">By Richard O Robinson</a></li>
<li><a href="javascript: document.cookie='style=4'; window.location.reload();">The Greener Side</a><br />
<a href="#">By Shane Jeffers</a></li>
<li><a href="javascript: document.cookie='style=5'; window.location.reload();">Moment of Zen</a><br />
<a href="http://studentweb.ecpi.edu/beachva/mathow7777">By One|Te Productions</a></li>
<li><a href="download/The_Garden.zip">Add To The Garden</a><br />
<a href="#"></a></li>
</ul>
It should have two lines of text for each link, and I want it to be horizontal.
Here is my css for it.
#navlist a {
color: green;
}
#navlist {
list-style-type: none;
}
#navlist li{
display: inline;
}
Thanks for any help.

