Zen Cart Logo

Left sidebar border

Locked

Views: 1,767

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
25 Apr 2009, 1:22 AM
#1
krazey avatar

krazey

New Zenner

Join Date:
Apr 2009
Posts:
32
Plugin Contributions:
0

Left sidebar border

Hi zenners,
My picture shows the left sidebar border(grey) only goes down as far as the last catergory sidebox(new arrivals). I want to have it running down the whole way to the footer. my site is http://www.mydfashop.com/store

Thank you!!!

25 Apr 2009, 3:00 AM
#2
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Location:
N of San Antonio TX
Posts:
9,771
Plugin Contributions:
9

Re: Left sidebar border

Use FireFox with firebug to see your choices.
I would lose the border on the sideboxes and put it on navColumnOne.

25 Apr 2009, 3:04 AM
#3
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,178
Plugin Contributions:
0

Re: Left sidebar border

Kr,
Also you have some missing ; in the .css

.leftBoxContainer, .rightBoxContainer {
margin: 0em;
border: 0px solid #9a9a9a;
border-right: 1px solid #9a9a9a;
margin-top: 0em;
font-weight: bold}

.sideBoxContent {
background-color: #ffffff;
padding: 0.7em;
font-size: 14px
}

.accountQuantityDisplay {
width: 10%;
vertical-align: top
}

Take a look and you will notice the missing ;

25 Apr 2009, 7:25 AM
#4
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Left sidebar border

Those missing semicolons are not essential (the CSS will be valid without them), but they are a minefield waiting for you to add another property after them so they can then trip you up with a genuine error.

Always using semicolons after property values means never suffering that fatal error.

26 Apr 2009, 1:56 AM
#5
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Location:
Texas
Posts:
6,178
Plugin Contributions:
0

Re: Left sidebar border

@gjh42
Thanks for the update on the Css..
Just when I though I knew it, WHAM, another lesson... :smile: