ah HAH!
I think I understand what your explaining now.
You have an image that is (just as an example) 300x 50
and you want the broswer to stretch it to the dimensions you specified in header.php?
It seems like that should work but I tried it on my little test page, and sure enough, telling the header.php that my 400x150 picture is really 800x50 did... nothing.
But! You CAN do this in
includes/templates/wallet/common/tpl_header.php
You'll have to take out the snippet of code that calls for the logo and put in static html for the image.
So! (First, make a backup copy of tpl_header.php and tuck it away somewhere for good measure.)
In the tpl_header.php file, around line 69
delete
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) . '</a>'; ?></div>
and insert (after changing what's in red to your specifications)
Code:
<div id="logo">
<img src="http://www.three-elms.com/shop/includes/templates/wallet/images/banner.jpg" alt="alternate text here or leave blank" width="XXX" height="XXX" align="baseline" border="0" />
</div>
This seems to work fine! In a test store I told tpl_header.php to display my 758x124 logo at 200x200, and indeed it squished it down to 200x200
http://www.planetofsand.com/CSSTEST/
Let me know if this works for you?
Thanks!
zami