Left sidebar border

Locked
Results 1 to 5 of 5
This thread is locked. New replies are disabled.
25 Apr 2009, 01:22
#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
http://mydfashop.com/store/grey_sidebar.jpg
Thank you!!!
25 Apr 2009, 03:00
#2
dbltoe avatar

dbltoe

Totally Zenned

Join Date:
Jan 2004
Posts:
9,707
Plugin Contributions:
6

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, 03:04
#3
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Posts:
6,171
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, 07:25
#4
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Posts:
21,876
Plugin Contributions:
6

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, 01:56
#5
haredo avatar

haredo

Totally Zenned

Join Date:
Apr 2006
Posts:
6,171
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: