Quote Originally Posted by julia44 View Post
Thank you so much for getting back to me. I actually went back to the original coding for the header. It is redundant with al the Home's that you see but I can't figure out which one I want to get rid of.

I think I am going to think about it over the weekend and then if I need help come back. To much going on right now and need a break from looking at this. Oh I do have 1 completely different question. How do I change some of the colors in the footer. I changed the links colors but that didn't work because I wanted them white or pink but that also changes the one's on the sitemap and white doesn't work for that page. So I was hoping I could just change the ones in the footer.
Here is the section you want to remove:
Code:
<!--bof-navigation display-->
        <div id="navMainWrapper" class="clearfix">
          <div id="navMain">
            <div id="navMainLinks">
              <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
      } else {
        if (STORE_STATUS == '0') {
?>
                <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
                <?php } } ?>
                <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
                <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a></li>
                <li><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a></li>
                <?php }?>
              </ul>
            </div>
            <div id="navMainSearch">
              <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
            </div>
          </div>
        </div>
        <!--eof-navigation display-->
Then you want to move this section to tpl_main_page.php
Code:
            <div id="navMainSearch">
              <?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?>
            </div>
To change specific link colors, you can look at the page source, and get the name of the <div> that is surrounding those links. For example, the <div> surrounding the footer links has the id of "bottomLine", so in the stylesheet.css, you'd put this for white links:

#bottomLine a {color:#ffffff;}