I’ve been running several of the validation checks this morning. There are some Errors, but they show my browser compatibility as doing good.
Let me show what I’ve got – maybe that will shed light on something I’m just not seeing.
<nav class=”mainnavbar”>
<?php wp_nav_menu(array(‘menu’ => ‘Main Nav Menu’ )); ?>
</nav>
—CSS—
.mainnavbar ul {
position: absolute;
list-style: none;
margin: 0;
padding: 0;
font-size: 24px;
font-family: Calibri, Helvetica, Verdana, Arial, sans-serif;
font-weight: bold;
}
.mainnavbar ul li{
margin: 0;
padding: 0;
width: 210px;
height: 37px;
}
.mainnavbar ul li:nth-child(1) a:link, .mainnavbar ul li:nth-child(1) a:visited {
display: block;
padding: 5px 5px 5px 40px;
background: url(images/b1.png) no-repeat left top;
color: #fff;
font-size: 80%;
text-decoration: none;
}
.mainnavbar ul li:nth-child(1) a:active, .mainnavbar ul li:nth-child(1) a:hover {
display: block;
padding: 5px 5px 5px 40px;
background: url(images/b1.png) no-repeat left bottom;
color: #ff9;
font-size: 80%;
}
–AT THIS POINT I HAVE 5 more NTH-CHILD commands that I’ll leave out–