This is easy enough to fix, but before going straight to the problem there are several things that can be done to make things a little easier. I'm going to try to change your markup as little as possible, and making the changes red.
Let's begin with the header section. The two images have a combined height of 180px. However, you've set the height of their container to only 115px.
#header {
background: none repeat scroll 0 0 #4D3821;
height: 180px;
margin: 0;
padding: 0;
position: relative;
} This will push your navigation down a bit. Don't worry, we'll fix that soon. Next we're going to move where your images are in the markup. They're displayed before your navigation, and that's the way it should be in your markup.
<div id="header">
<img width="960" height="115" src="http://i1200.photobucket.com/albums/bb328/tobeeornot/header_bg.jpg" alt="header">
<img width="960" height="65" src="http://i1200.photobucket.com/albums/bb328/tobeeornot/indentifier.jpg">
<div id="shoppingCart"><a href=".htm" title="shop">shop</a></div>
<div id="joinButton"><a href="mailto:contact@bliss.com" title="join">join</a></div>
<div id="mainNav">
<ul>
<li><a href="index.htm">about us</a></li>
<li><a href="products.htm">products</a></li>
<li><a href="order.htm">custom order</a></li>
<li><a href="contact.htm">contact us</a></li>
<li><a href="recipe.htm">recipe</a></li>
</ul>
</div><!-- end #mainNav -->
</div><!-- end #header -->
Now it will look exactly like it did before you moved the images. It just makes a little more sense to anyone reading the markup. Now let's move your navigation back up with the top property.
#mainNav {
background-color: #8DADAF;
bottom: -30px;
height: 30px;
top: 115px;
left: 230px;
position: absolute;
text-align: center;
width: 590px;
}
Now we can remove <h3> </h3> from your mainContent section, and decrease its height to around 340px to move the flowers up.
#mainContent {
background: url("http://i1200.photobucket.com/albums/bb328/tobeeornot/flowers_bg.png") no-repeat scroll center bottom transparent;
float: left;
height: 340px;
margin: 0;
width: 960px;
}
Now let's deal with the actual problem.
#mainNav li a:link, #mainNav li a:visited {
background: url("http://i1200.photobucket.com/albums/bb328/tobeeornot/nav_rollover.jpg") no-repeat scroll left top transparent;
color: #8DADAF;
display: block;
font-family: Verdana,Geneva,sans-serif;
font-size: 0.8em;
font-weight: bold;
line-height: 30px;
padding: 0 4em 0 1em;
text-decoration: none;
}
The padding will simply not work because some links are going to be bigger than the others. This is because there are larger words, or just more words. Fortunately fixing this is pretty easy. Remove the padding and give the links a width.
#mainNav li a:link, #mainNav li a:visited {
background: url("http://i1200.photobucket.com/albums/bb328/tobeeornot/nav_rollover.jpg") no-repeat scroll left top transparent;
color: #8DADAF;
display: block;
font-family: Verdana,Geneva,sans-serif;
font-size: 0.8em;
font-weight: bold;
line-height: 30px;
text-decoration: none;
width: 120px;
}
Now there is just one issue. The recipe link is on the next line. Increase the width of mainNav to 600px.
#mainNav {
background-color: #8DADAF;
bottom: -30px;
height: 30px;
left: 230px;
position: absolute;
top: 115px;
width: 600px;
} I'm not entirely sure if this is the look you were going for, but it fixes the problem. Let me know if there's something I did that you don't understand.
Regards
Arkinder
