I am facing an issue with centering my menu and logo on my website. You can view the page here:
Currently, the logo and menu appear to be aligned to the right instead of being centered. I have tried adjusting margins and other settings, but it does not seem to work.
Menu / Logo CSS:
#header2 h1 { /*Logo*/
display:block;
float:left;
width:320px;
height:125px;
background:url('resources/images/logo.jpg') no-repeat 0 0;
text-indent:-10000px;
}
/*#header2 h1 a:hover {
background:url('resources/images/logo.jpg') no-repeat 0 -125px;
}*/
#header2 h1 span.bg_fade { /*Logo hover*/
position: absolute;
top: 0;
left: 0;
height: 125px;
width: 320px;
background:url('resources/images/logo.jpg') no-repeat 0 -125px;
}
#header2 ul { /*Menu*/
display:block;
float:right;
width:640px;
height:125px;
background:url('resources/images/menu.jpg') no-repeat 0 0;
list-style:none;
}
#header2 ul li { /*Menu part*/
display:block;
float:left;
height:125px;
text-indent:-10000px;
}
#logo-nav {
margin-right:10px;
}
#home {
width:160px;
}
#about {
width:137px;
}
#work {
width:129px;
}
#contact {
width:210px;
}
#header2 ul li a {
display:block;
width:100%;
height:100%;
outline: 0 !important;
-moz-outline-style: 0 !important;
-webkit-outline: 0 !important;
-webkit-outline-style: 0 !important;
}
#home a:hover {
background:url('resources/images/menu.jpg') no-repeat 0 -125px;
}
#about a:hover {
background:url('resources/images/menu.jpg') no-repeat -160px -125px;
}
#work a:hover {
background:url('resources/images/menu.jpg') no-repeat -297px -125px;
}
#contact a:hover {
background:url('resources/images/menu.jpg') no-repeat -426px -125px;
}
Menu / Logo HTML:
<div id="header2" style="height:465px;">
<div id="logo-nav" style="float:left;margin:0;">
<h1><a href="index.php">WeeBuild Web Design</a></h1>
<ul id="nav">
<li id="home"><a href="index.php" title="Click here to go to our homepage.">Home</a></li>
<li id="about"><a href="about.php" title="Learn more about us.">About</a></li>
<li id="work"><a href="work.php" title="Check out some of the work we've done.">Work</a></li>
<li id="contact"><a href="contact.php" title="Any questions? Click here to contact us.">Contact</a></li>
</ul>
</div>
If anyone has suggestions on how to properly center the menu and logo, please share them!