
Originally Posted by
stephy
Thank you for your reply.
I thought it was odd that it looked okay

Is there anyway I can move it from being a logo to being a background.
As I would like to keep the image as it is and not reduce the size.
Many thanks for any help.
You could change mainWrapper to this:
div#mainWrapper {
margin-top:25px;
text-align: left;
width: 850px;
vertical-align: top;
background:url(includes/templates/simple_zen/images/logo.gif)no-repeat;
border:5px solid #transparent;
}
then open up includes/templates/simple_zen/common/tpl_header.php
and change:
Code:
<div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT, HEADER_LOGO_WIDTH, HEADER_LOGO_HEIGHT) . '</a>'; ?></div>
to this:
Code:
<div id="logo"></div>
You'll also need open the logo in an image editing program to make a 34 pixel gap at the top of the image, so that the logo starts after the Home Login bar. Hope that makes sense.