Zen Cart Logo
Forums / Basic Configuration / need border arong left column

need border arong left column

Locked

Views: 1,188

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
18 Oct 2006, 1:16 PM
#1
vr4indian avatar

vr4indian

Zen Follower

Join Date:
Apr 2006
Posts:
141
Plugin Contributions:
0

need border arong left column

my website link:

i need border aroung my each side box..

like around (left - right- bottm) category box, around best sellers box..

can any one help me

[email protected]

thanks

18 Oct 2006, 1:45 PM
#3
zforrest avatar

zforrest

New Zenner

Join Date:
Jun 2006
Location:
Austin, TX
Posts:
85
Plugin Contributions:
0

Re: need border arong left column

This css will control the border for all of the sidebox containers on the left side:

div.leftBoxContainer {
border: 1px solid black;
}

If you wanted to just affect the Categories Sidebox, a CSS example would be like so:

div.leftBoxContainer#categories {
border: 1px solid black;
}

You can affect individual sideboxes in the same way, for example, if you wanted to just affect the bestsellers sidebox you would take the first css class and append "#bestsellers" to the selector like so:

div. leftBoxContainer#bestsellers { }

This way, you can pick and choose which sidebox to affect, if you wished.