Click to See Complete Forum and Search --> : create sidebars within a large sidebar


jagguy
06-27-2007, 05:23 AM
I want to create smaller sidebars with large sidebar.
Like small boxes within a large box on left hand side and the same on the right.

I will put up an example soon but don't i use absolute positioning for the large box, a relative postion within this box for smaller box containers.
The css tags are class and an id so I can keep the appearance of each smaller container the same.

jagguy
06-27-2007, 07:05 AM
solved


.lbox {
position:relative;
width:120px;
height:155px;
background: red;
z-index:2;
left: 10px;
border:2px solid black;
top: 15px;
margin-bottom:15px; /*dont use padding or top because this fails to space eachbox*/

}
div#boxlayer1 {
position:absolute;
width:145px;
height:550px;
z-index:1;
left: 8px;
top: 9px;
border:2px solid black;
background: green;
}