Hello Dr. Byte,
Thanks for taking the time to answer my question. I was able to get the code in proper syntax for the Home link, and successfully tested it. However, I need a hand figuring out the syntax for the following line of code for the logo which links back to the home page.
The line of code originally was:
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>
I changed the syntax as follows:
Code:
<div id="logo"><a href="<?php echo zen_href_link(FILENAME_DEFAULT); ?> . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . "</a></div>
However, the logo no longer shows at the top of the screen. I'll keep working the code, but if you or anyone can figure out what I did wrong and can lend a hand, I'd appreciate it.
Thank you again!
Christopher