Hello I don't have any knowledge in css and I know that this is easy for you guys... I have this scroll box code.. pre { background:#efefef; border:0px solid #A6B0BF; font-size:120%; line-height:80%; overflow:hidden; padding:0px; color:#000000 } pre:hover { border:0px solid #efefef; } code { font-size:120%; text-align:center; margin:0;padding:0; color: #000000;} .clear { clear:both; overflow:hidden; } What I want is I want to have a box with a fix width and height with no scroll bar, this is where I will put my content.. how will I able to that? Thanks!
Ok I finally get it working.. By adding this html code.. <div style="height:460px;width:610px;overflow:hidden"> content here </div> my problem is everytime I will decrease the height it trims only the lower part of the box.. Is there any way I can trim the upper portion of the box? Thanks!