the very top one that says Home Log in. I found where I can move it below the logo image.....didn't like that...moved it back to the top..is there a way to remove it completely?
Thanks!
the very top one that says Home Log in. I found where I can move it below the logo image.....didn't like that...moved it back to the top..is there a way to remove it completely?
Thanks!
Then just deactivate the whole
<!--
<div id="navMainWrapper">
<?php // navigation display code ?>
</div>
-->
I have searched tpl_header.php and I can't find the term:
<?php // navigation display code ?>
You are in the correct file, in a copy (do not edit the core file) remove this code in total:But be aware that this also controls and will remove other nav bar items that display the logout, shopping cart, and checkout links that I would think that one would want for their customers.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 } else { if (STORE_STATUS == '0') { ?> <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li> <li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CREATE_ACCOUNT; ?></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> <br class="clearBoth" /> </div> <!--eof-navigation display-->
Thank you so much, it worked.....but from what you are saying, I really need to have it in there...thanks for telling me that info...I will reconsider....it's just so ugly: I can't do anything with it...LOL
Thanks!
I would concentrate on making it pretty then!!!
ROTFLLLL....if all else fails maybe I can blend it into the background....:>)
May I know what you are trying to achieve? Prettier main navigation links? You mean change color or make it like buttons?
Well, it doesn't blend in with the page being placed underneath the logo image because of spaces I can't find where to get rid of and it doesn't blend in with the logo image. Instead it stands out...the best I can do is to blend it into the page background since it is neccessary to site navigation.
Actually the standard code was designed to place main navigation link above the logo and Header Tag text. They are in seperate div box, so wont blend together.
If you want to blend it with logo (my understanding you make logo as background of main navigation right?) I suggest you modify the main navMainWrapper div box and make logo as its background.
This could be trial and error, a little bit modification of aligment, padding etc, but you will find the best result to your needs.