I would like to place an image into my header, but I cannot seem to get it positioned properly.
Below is a link to a screen capture and overlay image of how I would like the image positioned, and my header code. Also, rather than placing html into the header, how may I create php code and the respective css to handle this?
http://www.9001sites.com/temp/9001V_capture.jpg
Header:
...
<div class="Main">
<div class="Sheet">
<div class="Sheet-body">
<div class="Header">
<div class="Header-jpeg"></div>
<div class="headersearchbar"><?php include (TEMPLATEPATH . '/searchform.php'); ?></div>
<div class="logo">
<h1 id="name-text" class="logo-name">
<a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
<div id="slogan-text" class="logo-text">
<?php bloginfo('description'); ?></div>
</div>
</div>
<div class="nav">
<div class="l"> </div>
<div class="r"> </div>
<ul class="artmenu">
<?php art_menu_items(); ?>
</ul>
</div>
Thank you.