Forums / Templates, Stylesheets, Page Layout / Logo Header Placement

Logo Header Placement

Locked
Results 1 to 4 of 4
This thread is locked. New replies are disabled.
12 Mar 2009, 15:56
#1
cybernickel avatar

cybernickel

New Zenner

Join Date:
Sep 2008
Posts:
36
Plugin Contributions:
0

Logo Header Placement

I would like to have the logo header above the row with "home, log In, search" rather than below it as it is with default. How or where would I do this? I tried the header.php file with no luck.

uo.cybernickel.com is my store site.

I have also seen banners above the the entire store. Similiar to how the banner runs below the site. Played with banner management with no luck. Any ideas?
12 Mar 2009, 23:38
#2
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Posts:
6,171
Plugin Contributions:
0

Re: Logo Header Placement

CyberNickel:

I would like to have the logo header above the row with "home, log In, search" rather than below it as it is with default. How or where would I do this? I tried the header.php file with no luck.

uo.cybernickel.com is my store site.

I have also seen banners above the the entire store. Similiar to how the banner runs below the site. Played with banner management with no luck. Any ideas?


Cy,
includes/ templates/ your_template/ common/ tpl_header.php

Move all of this code:
[PHP]<!--bof-header logo and navigation display-->
<?php
if (!isset($flag_disable_header) || !$flag_disable_header) {
?>

<div id="headerWrapper">
<!--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>
<?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>
<br class="clearBoth" />
</div>
<!--eof-navigation display-->
[/PHP]

Right below this line:
[PHP]<!--eof-header logo and navigation display-->[/PHP]
31 Mar 2009, 16:12
#3
cybernickel avatar

cybernickel

New Zenner

Join Date:
Sep 2008
Posts:
36
Plugin Contributions:
0

Re: Logo Header Placement

Ty!!!!!!!!!!!!!!!
31 Mar 2009, 16:18
#4
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Posts:
6,171
Plugin Contributions:
0

Re: Logo Header Placement

Cy,
Have you been sleeping for 14 or so days.. LOL
Glad I could assist you.. Nice site by the way..