Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Layout problems - header & footer

Layout problems - header & footer

Locked

Views: 1,351

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
22 Aug 2006, 8:12 PM
#1
winfab avatar

winfab

New Zenner

Join Date:
Aug 2006
Location:
NY, USA
Posts:
26
Plugin Contributions:
0

Layout problems - header & footer

Hello everyone, I have two questions about the layout on my page, i have searched in here but have not found the answer.

First - How do I get the Ip address & copyright info to move up just below the home link within the burgundy bar I have?

Second - There is a white bar between my header and the top nav area - How do I removed that, or bump up the nav section to hide it?

I have searched for this on the developer tool kit as well, but can't seem to find the right line of code.

https://www.apostle.com

Thank you all in advance

22 Aug 2006, 9:03 PM
#2
tinas avatar

tinas

Totally Zenned

Join Date:
Jan 2005
Location:
Lake Havasu, AZ
Posts:
1,090
Plugin Contributions:
0

Re: Layout problems - header & footer

This is achievable :

in your includes/templates/YOURTEMPLATE/common/tpl_header.php change this :

</div> <br class="clearBoth" /> <!--eof-branding display-->

to

</div> <div class="clearBoth"></div> <!--eof-branding display-->

This will fix the whitespace

The footer would be fixed if you changed includes/templates/YOURTEMPLATE/common/tpl_footer.php

</ul> </div> </div> <!--eof-navigation display -->

to

</ul> <!--eof-navigation display -->

and closed the divs at :

?>

</div></div> <!--eof-ip address display -->

Hope that helps