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
vr4indian AT yahoo DOT com
thanks
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
vr4indian AT yahoo DOT com
thanks
sorry i forgot to put my website link
http://www.netclues.net/demo1/caytech/index.php
thanks
vr4indian AT yahoo DOT com
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.