Results 1 to 6 of 6
  1. #1
    Join Date
    Feb 2004
    Posts
    1,278
    Plugin Contributions
    0

    Default How do I make a Link ( Hotspot ) in the header?

    I want to place an image in my header ( Clearance Specials ) Click Here

    How can I do this?

  2. #2
    Join Date
    Sep 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: How do I make a Link ( Hotspot ) in the header

    I'd like to do this too... has anybody figured it out?

  3. #3
    Join Date
    Aug 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: How do I make a Link ( Hotspot ) in the header

    Does it have to be in the header? Can't you add that to the salemaker/specials utility? And you can change where your "specials" link is displayed.

  4. #4
    Join Date
    Feb 2004
    Posts
    1,278
    Plugin Contributions
    0

    Default Re: How do I make a Link ( Hotspot ) in the header?

    I want to put a Click Here For Live Help link in the header

    I allready have it on the sidebox

  5. #5
    Join Date
    Sep 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: How do I make a Link ( Hotspot ) in the header?

    I got it working... this thread helped: http://www.zen-cart.com/forum/showthread.php?t=93238


    the code for my tpl_header.php is:

    Code:
    <?php
    /**
     * Common Template - tpl_header.php
     *
     * this file can be copied to /templates/your_template_dir/pagename<br />
     * example: to override the privacy page<br />
     * make a directory /templates/my_template/privacy<br />
     * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
     * to override the global settings and turn off the footer un-comment the following line:<br />
     * <br />
     * $flag_disable_header = true;<br />
     *
     * @package templateSystem
     * @copyright Copyright 2003-2006 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: tpl_header.php 4813 2006-10-23 02:13:53Z drbyte $
     */
    ?>
    
    <?php
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']));
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message']);
    } else {
    
    }
    ?>
    
    
    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>
    
    <div id="headerWrapper">
    
    
    <!--bof-branding display-->
        <div align="center"><img src="includes/templates/CUSTOM/images/logo.gif" width="750" height="236" border="0" usemap="#Map">
    <map name="Map" id="Map"><area shape="rect" coords="559,19,723,58" href="http://www.abc.com" />
    </map>
     </div>
    
    
    <br class="clearBoth" />
    <!--eof-branding display-->
    
    <!--eof-header logo and navigation display-->
    
    
    <!--bof-optional categories tabs navigation display-->
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
    <!--eof-optional categories tabs navigation display-->
    
    <!--bof-header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    <!--eof-header ezpage links-->
    </div>
    <?php } ?>

  6. #6
    Join Date
    Oct 2008
    Posts
    5
    Plugin Contributions
    0

    Default Re: How do I make a Link ( Hotspot ) in the header?

    Hello,

    I need help making my header clickable also, and the threads I found do not help. I need help with specifically what I want to do, because I can't pick out what I need to know from similar instructions. The CSS codes are confusing. Please help. Thanks.

 

 

Similar Threads

  1. Is it possible to create a Hotspot Link?
    By dothanbydesign in forum Templates, Stylesheets, Page Layout
    Replies: 14
    Last Post: 16 Oct 2008, 02:37 PM
  2. Replies: 2
    Last Post: 9 Sep 2008, 11:35 PM
  3. how do I make the whole header background image a link?
    By keelyerin in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 9 Aug 2008, 12:32 AM
  4. Replies: 0
    Last Post: 5 Jun 2008, 11:35 AM
  5. How to make random header image, with link?
    By kbalona in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 6 Jun 2007, 09:41 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg