Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2007
    Location
    MA, USA
    Posts
    385
    Plugin Contributions
    0

    Default Adding separaters between Header Links?

    I cannot figure out how to add a separater in between my header links. My footer links look like this.

    Home :: Company Profile :: Site Map :: Resources & Links

    My header links look like this:

    Home Privacy Contact Us Log In

    How do I put the " :: " in between them?

  2. #2
    Join Date
    Nov 2006
    Location
    Dartmouth, NS Canada
    Posts
    2,378
    Plugin Contributions
    0

    Default Re: Adding separaters between Header Links?

    admin/Configuration/Layout Settings -> Bread Crumbs Navigation Separator

    Rob

  3. #3
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Adding separaters between Header Links?

    For the header navbar, you will have to manually add the separators to the list items.
    For example, find this in /includes/templates/your_template/common/tpl_header.php:
    PHP Code:
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
        <ul class="back">
        <li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>
    <?php if ($_SESSION['customer_id']) { ?>
        <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF'''SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF?></a></li>
        <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT'''SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT?></a></li>
    <?php
    Add
    <?php echo EZPAGES_SEPARATOR_HEADER; ?>
    to the list items after the first one:
    PHP Code:
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
        <ul class="back">
        <li><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo HEADER_TITLE_CATALOG?></a></li>
    <?php if ($_SESSION['customer_id']) { ?>
        <li><?php echo EZPAGES_SEPARATOR_HEADER?><a href="<?php echo zen_href_link(FILENAME_LOGOFF'''SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF?></a></li>
        <li><?php echo EZPAGES_SEPARATOR_HEADER?><a href="<?php echo zen_href_link(FILENAME_ACCOUNT'''SSL'); ?>"><?php echo HEADER_TITLE_MY_ACCOUNT?></a></li>
    Add to the rest of the items in the same way.

  4. #4
    Join Date
    Nov 2006
    Location
    Dartmouth, NS Canada
    Posts
    2,378
    Plugin Contributions
    0

    Default Re: Adding separaters between Header Links?

    Note to self: Read what the OP actually says.

    Rob

 

 

Similar Threads

  1. Manually adding links to header
    By uncharted in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 18 Nov 2011, 07:42 AM
  2. Odd Spacing between EZ Pages Header Links
    By mollycampbell in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 29 Mar 2009, 02:19 AM
  3. Adding links to top header
    By tenessaa in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Nov 2008, 09:40 PM
  4. Adding a little space between links in the sideboxes
    By daneh in forum Basic Configuration
    Replies: 2
    Last Post: 1 Jan 2008, 06:09 PM
  5. Need help adding space between my header and the center content.
    By Scrap-eze in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 20 Jan 2007, 03:22 AM

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