Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Ez-Pages Bar and other questions

Ez-Pages Bar and other questions

Locked

Views: 2,152

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
27 Jan 2007, 11:36 PM
#1
berserker avatar

berserker

Totally Zenned

Join Date:
May 2006
Posts:
712
Plugin Contributions:
0

Ez-Pages Bar and other questions

hi there,

Is there a way to increase the height of the ez-pages bar (header)?.

If you look at my site https://www.animestrike.co.uk, i want the header bar (import DVD etc.) to be the same as the footer bar (home, faq etc.) in terms of height.

Also,

  1. How do i get rid of the white space between the logo and header bar?
  2. How do you put a border around the footer?
  3. How do you increase the space around the "copyright etc."?

Thank you

27 Jan 2007, 11:58 PM
#2
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Ez-Pages Bar and other questions

Berserker:

hi there,

Is there a way to increase the height of the ez-pages bar (header)?.

If you look at my site https://www.animestrike.co.uk, i want the header bar (import DVD etc.) to be the same as the footer bar (home, faq etc.) in terms of height.

Also,

  1. How do i get rid of the white space between the logo and header bar?
  2. How do you put a border around the footer?
  3. How do you increase the space around the "copyright etc."?

Thank you

For the header bar vs. the footer bar goes, they are different sizes because the background images you are using are different sizes (the header one is 22px tall, while the footer one is 25px tall). If you use the footer image, then increase the #navEZPagesTop padding to 0.7em, that will do the trick. Unless I'm misunderstanding what you mean? I think that will fix your #1 as well.

#2. the very bottom portion is
#siteinfoLegal, and you can also do a left/right border on #navSuppWrapper if you want.

  1. That would also be done with padding on #siteinfoLegal
28 Jan 2007, 2:35 AM
#3
berserker avatar

berserker

Totally Zenned

Join Date:
May 2006
Posts:
712
Plugin Contributions:
0

Re: Ez-Pages Bar and other questions

hi there,

managed to fix the header/footer bar, #2 and #3. i wasn't able to fix #1 yet but i'll get to it tomorrow morning. thanks a lot for the help!!! :)

28 Jan 2007, 2:45 AM
#4
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Ez-Pages Bar and other questions

Berserker:

hi there,

managed to fix the header/footer bar, #2 and #3. i wasn't able to fix #1 yet but i'll get to it tomorrow morning. thanks a lot for the help!!! :)

In firefox it seems to look fine, the little white strip I only see in IE.

I'm guessing it has to do with the:

<br class="clearBoth" /> right underneath your logo.

I'd open up your tpl_header.php, and change that do

<div class="clearBoth" /></div>

Then I'd add more styling to .clearBoth in the stylesheet like this:

.clearBoth {
clear:both;
height:0;
font-size: 1px;
line-height: 0;
}

To make sure it doesn't take up any vertical space in IE.