
Originally Posted by
noppie
no ,,, i understand css files.. I already changed them.. I made the pink line on my header pink from dark grey... and smaller.. and I made the box title smaller also and purple.
i just want to ADD contact us in my header on the pink line...
i am in the tpl_header.php under the commons file.. the answer is there somewhere I am taking it apart using the blue fish editor program..
Line 128 - 133 in includes/templates/YOUR_RESPONSIVE_TEMPLATE/common/tpl_header.php:
PHP Code:
<?php } else { ?>
<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']) { ?>
add this line:
<li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'SSL'); ?>"><?php echo BOX_INFORMATION_CONTACT; ?></a></li>
like this:
PHP Code:
<?php } else { ?>
<div id="navMain">
<ul class="back">
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>
<li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'SSL'); ?>"><?php echo BOX_INFORMATION_CONTACT; ?></a></li>
<?php if ($_SESSION['customer_id']) { ?>
The contact us link will now show on desktop. It should already be in the 'responsive' mobile and tablet menu through /templates/tpl_modules_mobile_menu.php loading through the "menu" i class="fafa...
Bookmarks