I apologize for my ignorance - I am not very familiar with php. (If this was HTML, I could do this in a heartbeat.)
In what doc do I remove the padding?
I created the header image and hotspots in Fireworks and exported it from there. What doc would have it's relative information?
Thanks for the fix everything is working great now
http://shoppingbasics.com
Well, the hotspots shouldn't require any php skills, you just need to find the HTML code for the image map (I'm assuming its done via an image map). If that hotspot image is in action on a regular web site perhaps you can view the source of the page and copy the coding, and paste it in tpl_header.php.
Any styling is done in the stylesheet files, which are found in includes/templates/cherry_zen/css, the padding in question is in stylesheet.css.
I'm not familiar with Fireworks, so I can't help you there.![]()
Thanks again for all of your help.
I removed the padding.
I do have the code for the image map anad have experimented with placing it into the tpl_header.php page, but thus far I can only get it at the top of the page. I am really not sure where to place it in the code.
I will keep working with it. Thanks!
I don't think it matters too much where the actual map portion goes in the code. I've also put it below the footer on a zen cart site before. But you can hard code the logo so that you can add the usemap portion. So instead of this:
<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>
You'd do something like this:
<div id="logo"><a href="http://miss-crow.com/shop/"><img src="includes/templates/cherry_zen/images/logo.gif" alt="ALT TEXT HERE" width="999" height="336" usemap="#name_of_map_here" /></a></div>
Bookmarks