Forum Moderators: not2easy
that is the link: the top yellow area is the content class i made and the bottom set of links is the code strait off the other site
that is the full CSS i am using.
so my question is: why would the links still be clickable objects but not appear within the content area and when they are not within the content area they appear fine? what am i missing in the content class CSS that is bucking the whole thing?
much love,
jeREMy
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
#navlist
{
margin: 0;
padding: 0 0 20px 10px;
}
#navlist ul,
#navlist li
{
margin: 0;
padding: 0;
list-style-type: none;
}
#navlist li
{
display: inline;
}
#navlist a
{
border-bottom: 1px solid #000;
margin: 0;
padding: 0 2ex;
font-weight: bold;
text-decoration: none;
color: #999;
}
#navlist a#current,
#navlist a:hover
{
border-bottom: 4px solid #000;
}
#navlist a:hover
{
color: #000;
}
.content
{
background-color: yellow;
padding: .1em;
}
</style>
<body>
<ul id="navlist" class="content">
<!-- due to my understanding of how whitespace works, can't have any between <li> elements here -->
<li><a href="http://www.rightontimedesign.com">home</a></li><li><a href="http://www.remthewanderer.com">my personal page</a></li><li><a href="http://www.coffeenthings.com">coffee n' things</a></li><li><a href="http://elise.rowan.edu/seminar/fall03/behr0019">my coldfusion work at Rowan</a></li>
</ul>
</body>
</html>