Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Small space above categories

Small space above categories

Locked

Views: 1,149

Results 1 to 8 of 8
This thread is locked. New replies are disabled.
18 Mar 2010, 5:26 PM
#1
atl2rva avatar

atl2rva

New Zenner

Join Date:
Feb 2010
Posts:
81
Plugin Contributions:
0

Small space above categories

This is a very minor issue but for some reason I cant let it go. On my page http://www.proskit.org there is a little extra space above my Categories sidebox when compared to my right sidebox. Is there a way I can even those out?

Thank You, Paul

18 Mar 2010, 7:45 PM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Small space above categories

I can't tell why it's doing that, but try adding to your stylesheet:

#categoriesHeading {margin-top:-16px;}

18 Mar 2010, 8:03 PM
#3
atl2rva avatar

atl2rva

New Zenner

Join Date:
Feb 2010
Posts:
81
Plugin Contributions:
0

Re: Small space above categories

Yup that got it, thank you for the help:bigups:

22 Mar 2010, 1:10 PM
#4
atl2rva avatar

atl2rva

New Zenner

Join Date:
Feb 2010
Posts:
81
Plugin Contributions:
0

Re: Small space above categories

:oops: That fix worked great until I installed the fly out categories mod. So now that I have disabled categories in my layout box controller and turned on the Flyout Categories box I am getting that space above the categories box again. I tried pasting that same code into new categories css that came with the new mod.

22 Mar 2010, 1:18 PM
#5
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Small space above categories

atl2rva:

:oops: That fix worked great until I installed the fly out categories mod. So now that I have disabled categories in my layout box controller and turned on the Flyout Categories box I am getting that space above the categories box again. I tried pasting that same code into new categories css that came with the new mod.

open includes/templates/YOUR_TEMPLATE/css/stylesheet.css

add the following

.rightBoxContainer {
border: 1px solid #ffffff;
margin-top:1.5em;
}

22 Mar 2010, 1:33 PM
#6
atl2rva avatar

atl2rva

New Zenner

Join Date:
Feb 2010
Posts:
81
Plugin Contributions:
0

Re: Small space above categories

Thanks this is better than it was. I would prefer if the columns were sitting a little closer to the header, but I can live with this.

22 Mar 2010, 2:12 PM
#7
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Small space above categories

atl2rva:

Thanks this is better than it was. I would prefer if the columns were sitting a little closer to the header, but I can live with this.

you can always change the margin-top settings

.leftBoxContainer {
border: 1px solid #ffffff;
margin-top:1.5em;
}

.rightBoxContainer {
border: 1px solid #ffffff;
margin-top:1.5em;
}

22 Mar 2010, 2:59 PM
#8
atl2rva avatar

atl2rva

New Zenner

Join Date:
Feb 2010
Posts:
81
Plugin Contributions:
0

Re: Small space above categories

Thanks again, I dont know if that caused this new issue or I just noticed it now after paying more attention to the right boxes. The right sideboxes appear to be overhanging on the background color by a few pixels. This only happens in firefox for me. In IE it appears fine. I have tried reducing the width of the right side boxes and it does not help. I appreciate all the help!