Hi there TALES,
and a warm welcome to these forums. 
Your page appears to be an excellent example of 'Divitis' 
Check out the symptoms here...
Also note that the id selector may only be used once per document, for repeats you must use the class selector.
I would have coded it with just the one ul element...
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>CSS Layout</title>
<style type="text/css">
body {
font-family:verdana,arial,helvetica,sans-serif;
font-size: 16px;
}
#nav {
padding:0;
margin:0;
list-style-type:none;
}
#nav li {
float:left;
clear:both;
}
#nav a {
float:left;
width:110px;
height:18px;
border:1px solid #00f;
background-color:#09C;
color:#fff;
text-decoration:none;
}
#nav a:hover {
background-color:#00f;
}
.lft-bdr, .rgt-bdr {
float:left;
border-width:10px;
border-style:double;
border-color:transparent transparent transparent #00f;
}
.lft-bdr {
border-color:transparent #00f transparent transparent;
}
</style>
</head>
<body>
<ul id="nav">
<li><span class="lft-bdr"></span><a href="http://www.dynamicdrive.com/">Dynamic Drive</a><span class="rgt-bdr"></span></li>
<li><span class="lft-bdr"></span><a href="http://www.dynamicdrive.com/style/">CSS Examples</a><span class="rgt-bdr"></span></li>
<li><span class="lft-bdr"></span><a href="http://www.javascriptkit.com/jsref/">JavaScript Reference</a><span class="rgt-bdr"></span></li>
<li><span class="lft-bdr"></span><a href="http://www.javascriptkit.com/domref/">DOM Reference</a><span class="rgt-bdr"></span></li>
<li><span class="lft-bdr"></span><a href="http://www.cssdrive.com">CSS Drive</a><span class="rgt-bdr"></span></li>
</ul>
</body>
</html>
This code has been tested successfully in IE8, Opera 11.1, Safari 5.3 and Firefox 3.6.16.
coothead
Bookmarks