I'm posting this so other people hopefully wont have to go through what I went through when I made my menu. It wasn't pretty trust me! ;)
My CSS code....
.menu {
margin: 0;
}
.menu li {
display: inline;
}
.menu li a {
text-indent: -99999px;
float: left;
margin-top: 15px;
}
.menu li.tab-home a {
width: 91px;
height: 24px;
background: url(images/menu_02.png) no-repeat scroll 0 0;
}
.menu li.tab-home a:hover {
background: url(images/menu_02.png) no-repeat scroll 0 -25px;
}
.menu li.tab-1 a {
height: 24px;
background: url(images/menu_03.png) no-repeat scroll 0 0;
width: 105px;
}
.menu li.tab-1 a:hover {
background: url(images/menu_03.png) no-repeat scroll 0 -25px;
}
.menu li.tab-2 a {
width: 136px;
height: 24px;
background: url(images/menu_04.png) no-repeat scroll 0 0;
}
.menu li.tab-2 a:hover {
background: url(images/menu_04.png) no-repeat scroll 0 -25px;
}
.menu li.tab-3 a {
background: url(images/menu_05.png) no-repeat scroll 0 0;
height: 24px;
width: 150px;
}
.menu li.tab-3 a:hover {
background: url(images/menu_05.png) no-repeat scroll 0 -25px;
}
.menu li.tab-4 a {
background: url(images/menu_06.png) no-repeat scroll 0 0;
height: 24px;
width: 125px;
}
.menu li.tab-4 a:hover {
background: url(images/menu_06.png) no-repeat scroll 0 -25px;
}
.menu li.tab-5 a {
background: url(images/menu_07.png) no-repeat scroll 0 0;
height: 24px;
width: 155px;
}
.menu li.tab-5 a:hover {
background: url(images/menu_07.png) no-repeat scroll 0 -25px;
}
.menu li.tab-6 a {
background: url(images/menu_08.png) no-repeat scroll 0 0;
width: 155px;
height: 24px;
}
.menu li.tab-6 a:hover {
background: url(images/menu_08.png) no-repeat scroll 0 -25px;
}
My functions.php code......
***remember to change the (a href to <a href***
<?php
//
// My custom menu
//
function custom_childtheme_access(){?>
<div id="access">
<div class="skip-link">(a href="#content" title="<?php _e('Skip navigation to the content','thematic');?>"><?php _e('Skip to content','thematic');?></div>
<div class="menu">
<ul class="menu">
<li class="tab tab-home">(a href="http://jamiescreativecorner.com/">Home
<li class="tab tab-1">(a href="http://jamiescreativecorner.com/about">About
<li class="tab tab-2">(a href="http://jamiescreativecorner.com/contact">Contact
<li class="tab tab-3">(a href="http://jamiescreativecorner.com/projects">Projects
<li class="tab tab-4">(a href="http://jamiescreativecorner.com/inspire">Inspire
<li class="tab tab-5">(a href="http://jamiescreativecorner.com/featured">Featured
<li class="tab tab-6">(a href="http://jamiescreativecorner.com/advertise">Advertise
</div><!-- #menu -->
</div><!-- #access -->