Image
I have included snapshot of the header because the site is hosted locally right now, hope this helps.
This is my Header.php:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body style="background-color:#082e56;">
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
<div id="page-wrap">
<div id="totum_banner">
</div>
<div id="header">
<ul id="nav">
<?php wp_list_pages('sort_column=menu_order&depth=1&title_li=');?>
</ul>
</div>
<!-- End of Header -->
I pulled the searchform out of the page-wrap div to avoid the position absolute but
This is my CSS:
#header {
position:absolute;
background:url(images/header_img.jpg) #082e55 no-repeat top;
left:168px;
top:0px;
width:611px;
height:217px;
}
#searchform {
width: 220px;
padding: 10px 135px 10px 10px;
float:right;
}