I need to add additional images to my main header and using firebug see that a clever zenner did this!
<div id="logoWrapper">
<div class="back" id="logo"><a href="http://www.aaa.aa/"><img height="138" width="316" title=" title " alt="title" src="includes/templates/custom/images/title.jpg"></a></div>
<div class="forward"><a href="http://www.aaa.aa/index.php?main_page=corporate_sales"><img height="138" width="322" title=" title " alt="title" src="includes/templates/custom/images/logosecond.jpg"></a></div>
<div id="logothird"><img height="40" width="256" title=" title " alt="title" src="includes/templates/custom/images/logothird.jpg"></div>
<br class="clearBoth">
</div>
and if I look for div id="logowrapper" using developers tools in admin it directs me to
/includes/templates/template_default/common/tpl_header.php
not a natural born coder so when I go there bit overwhelmed - it all seems to be calling on other stuff or directing to other stuff:
<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>
Where should I be looking??



