As your left column has an id of #main-menu, then #main-menu a will affect all <a> tags within that div. As the left column contains more than just the menu, you would be better off naming it more appropriately (like #left-col) and moving the #main-menu id to the menu <ul> instead :
Code:
<li><a class="divisionmenu" href="http://www.crnorthampton.com/new_site/standings.php?division=aa">AA</a></li>
</ul>
</div>
<div id="left-col">
<ul id="main-menu">
<li><span>Home</span></li>
Then in the css. change the id for the div
Code:
#left-col {
width:20%;
float: left;
margin-bottom: 25px;
margin-top: 14px;
padding: 3px;
padding-bottom: 60px;
border: solid 0px #00381C;
min-width: 140px;
width: expression((this.width < 200)?200+"px":"20%");
white-space:nowrap;
}
change the #main-menu ul to just #main-menu (as it is now the ul)
Code:
#main-menu {
margin: 0;
padding: 0;
list-style: none;
}
and change the other occurrances of div#main-menu to div#left-col
Code:
div#left-col {
padding-top: 0;
margin-top: 14px;
position: relative;
top: -3px;
}
div#left-col * {
POSITION: relative;
}
Bookmarks