
Originally Posted by
Graphicman
i'm sorry i think i must have come across wrong, what i want to do is place an image to the right, on top of the header that is already there and keep not replace the header all together.
You could always create a new declaration
#logo2 {
background: url(../images/YOUR_IMAGE.???);
float: right;
}
Now in your tpl_header.php
find this code:
PHP Code:
<div id="logoWrapper">
<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) . '</a>'; ?></div>
just below this add
<div id="logo2"> </div>
save the file and upload to your server