my HTML in the Main Index looks like this:
CODE
<div id="title">
</div>
<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="http://www.aldaynet.org/" id="current">Main</a></li>
<li><a href="http://www.aldaynet.org/archives.php">Main Archive</a></li>
<li><a href="http://www.aldaynet.org/index.xml">XML feed</a></li>
<li><a href="http://www.aldaynet.org/refer/">Referers</a></li>
<li><a href="http://www.aldaynet.org/contact/">Contact</a></li>
</ul>
</div>
i have the banner actually set as the background image for my title DIV, the corosponding CSS code looks like this:
CODE
#title{
color: #ffffff;
background-image: url(http://www.aldaynet.org/images/l/logo-k.png);
background-position: center;
background-repeat: repeat;
width: 100%;
height: 75px;
font-size:1px;
}
#navcontainer ul{
padding: .2em 0;
margin: 0;
list-style-type: none;
background-color: #990000;
color: #FFF;
width: 100%;
font: normal 90% arial, helvetica, sans-serif;
text-align: center;}
#navcontainer li{
display: inline;
text-align: center; }
#navcontainer li a{
text-decoration: none;
background-color: #990000;
color: #FFF;
padding: .2em 1em;}
#navcontainer li a:hover{
background-color: #CC0000;
color: #fff;
text-decoration: underline;}
and it produces
this