This was my Stylesheet:
Code: Select all
HTML { OVERFLOW: hidden; }
BODY {
OVERFLOW: hidden;
PADDING: 0px;
MARGIN: 0px;
font-family: Verdana, Sans-Serif;
background: white; }
HTML #headerrow {
MARGIN: 0px;
height: 30px;
BACKGROUND: #eeeeee;
margin: 0px;
PADDING: 5px;
POSITION: fixed;
RIGHT: 0px;
LEFT: 0px;
TOP: 0px;
TEXT-ALIGN: left; }
#headerrow table { max-height: 30px; }
#headerrow td {
padding: 2px;
text-align: center;
font-size: 8pt; }
HTML #content_container {
overflow: auto;
height: 92%;
font-size: 0.8em;
PADDING: 10px;
margin: 0px; }
Code: Select all
<div id="headerrow"> ... </div>
<div id="content_container">
<div id="content"> ... </div>
</div>
I'll also post a bug report.