I fully agree with kurio here.
Probably I wasn't clear enough about that it's only example code that I posted. I assumed you would change it to your needs, and to fit to Zen coding standards.
So I got some new notes:
:-)
1) I would only use links an hovers for the parts that really need it (as kurio already suggested). I was not sure which images you wanted to be "hoverable" that why I did it on all four. But you should decide which ones should be <A>s and which ones should be <DIV>s (or <IMG>s) and which ones need hovers (and remove the unneeded from de CSS).
2) I see another serious error in your HTML code:
Code:
<a href="http://english.globalpeace.jp/store/" class="peace-logo" id="peace-logo1" title="Click here to return to the Global Peace Campaign Store Top Page" alt="GPC Main Logo" ></a>
<a href="<img>" class="peace-logo" id="peace-logo2"></a>
<a href="<img>" class="peace-logo" id="peace-logo3"></a>
<a href="http://english.globalpeace.jp" class="peace-logo" id="peace-logo4" title="Click here to go to the English Global Peace Campaign homepage" alt="GPC Site Logo" ></a>
This does not look like a typo I am afraid. I think you should first read about the usage of de <a> and <img> tags etc (for example at http://www.w3schools.com/).
3) I am not sure, but I *think* this is an error too:
I would remove it, or change it to:
4) The
Code:
.peace-logo img {
display: none;
}
needs to be added to your stylesheet. I would put it along with the other peace-logo CSS you already have
5) Once you know how to use the <img> and <a> tags you should put in some Zen Cart code for the src and href when you apply it to the templates.
For *example* like this:
Code:
src="<?php echo $template->get_template_dir('top-arrow.gif', DIR_WS_TEMPLATE, $current_page_base,'images') ?>/top-arrow.gif"
Code:
href="<?php echo zen_href_link(FILENAME_WHATEVER, '', 'NONSSL'); ?>"
(only needed for internal links)
6) I suggest to use http://validator.w3.org/ to check for HTML errors, it can save you a lot of trouble.
http://validator.w3.org/check?verbos...ex%26cPath%3D2