(Untitled)

Sep 10, 2003 15:40

Does anyone know how to make the text in a box with the scroll bar in it like the layout on this community? Thanks.

Leave a comment

Comments 2

carriep63 September 10 2003, 21:44:48 UTC

Add this to your GLOBAL_HEAD overrides and change the bold numbers to suit your needs.

div {
position: absolute;
left:45%;
right:0%;
width:55%;
top:5%;
bottom:15%;
height:80%;
background: #3a75ad;
border:2px double #ffffff; overflow:auto;
}
clip:rect(auto);
}
td div {
position:relative;
top:1;
height:auto;
width:auto;
overflow:hidden;
border:0;
}
table, tr, td, .shadowed {
background: transparent;
}

/* change these numbers, must add up to 95% or less*/
table {
width: 95%;
margin-left: 0%;
margin-right: 0%;
}
/* do NOT change these numbers */
table table {
width: 100%;
margin:0;
}
table table table {
width: auto;
}

Reply

cdcs September 10 2003, 21:48:34 UTC
Thank you so much.

Reply


Leave a comment

Up