I seemed to have gotten the fixed header to work.
i was able to get the menu nav to rise up and look centered.
but i had to move the the menu div to before the logo.
so now the address info is too far off the header image.
does this code look correct?
header code:
</head>
<body>
<div id=’wrap’>
<div id=’header’>
<div id=’menu’>
<ul id=’nav’>
<?php wp_list_pages(‘title_li=’); ?> <‘br’>
</div>
<h1 id=’logo’>
<*a href=”<?php bloginfo(‘url’); ?>”*>
<img src=”<?php bloginfo(‘template_url’); ?>/images/logo.png”>
</h1>
<div id=’info’>
505 Virginia Ave Ste <‘br’> Atlanta, GA 30306 <‘br’> (505) 555-505
<‘br’> [email protected]</div>
</div>
</div>
CSS code:
@import “css/reset.css”;
@import “css/typography.css”;
@import “css/layout.css”;
/***General Styles***/
body {
background:transparent url(‘images/background.jpg’) repeat scroll;
color:#000;
font-family:Arial, sans-serif;
}
#wrap {
width:1024px;
margin:0 auto;
}
a {
text-decoration: none;
}
/***Header Styles***/
#header {
background: transparent url(‘images/navbar.png’) ;
position: fixed;
top: 0;
width: 1024px;
height: 62px;
}
h1#logo {
margin: -17px 0px 0px 95px;
float: left;
}
#info {
margin: 0px 0px 0px 0px;
font-size: 8px;
font-style: normal;
font-weight: 100;
text-decoration: none;
line-height: 10px;
color: #808080;
}
#menu {
margin: 0px 85px 0px 0px;/***whole menu placement***/
}
ul#nav li {
float: right;
line-height: 50px;
margin: 0px 15px 0px 0px;
font-size: 14px;
text-transform: uppercase;
}
ul#nav li a {
color:#bf001f; /***menu font color***/
}