I have a client looking for a site-template which I have almost finished. At certain parts of the site, they want the areas to be constant height/width and scrollable if anything goes further than it.
I have this:
[php]
#main_content #about_box {
background:rgba(0,0,0,0.6);
color: #9f93ab;
margin-left:0px; margin-right:5px;
margin-top:10px; margin-bottom:0px;
width: 190px;
height:100px;
max-height: 100px;
padding-left: 5px; padding-right:5px;
height:100%;
display: inline-table;
padding-bottom: 10px; padding-top:10px;
overflow: scroll;
}
[/php]
For some reason this goes way over 100px and doesn’t scroll or anything. Any ideas?