Cut out one of your images.
Set it as the background to your nav div.
Solved.
To be even nicer, change the image for the hover for the <li>- the simplest way is to flip the image upside down, or make it lighter in colour.
here's some code I lifted from a site giving free menus. just substitute your own images.
Code:
#menu {
position:relative;
display:block;
height:42px;
font-size:100%;
font-weight:normal;
background:transparent url(images/menu_background.gif) repeat-x top left;
}
#menu ul {
margin:0px;
padding:0;
list-style-type:none;
width:auto;
}
#menu ul li {
display:block;
float:left;
margin:0 1px 0 0;
}
#menu ul li a {
display:block;
float:left;
color:#000;
text-decoration:none;
padding:14px 16px 0 15px;
height:28px;
}
#menu ul li a:hover {
color:#fff;
background:transparent url(images/menu_backgroundOVER.gif) no-repeat top center;
}
you can add other styles to the various parts if so desired - eg text-decoration:underlined for the hover.
You can add an id of current to the menu item on each page and style that slightly different so the user gets a hint as to what page they are on.
I'm assuming that you have a div called menu, and use an unordered list for the menu.
Can't find a link to the site I found the code on, but it's one of the simplest menus you can make.
Bookmarks