Dei,
I cannot get the framecontentLeft text color white…
[php]
body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
}
#framecontentLeft, #framecontentRight{
position: absolute;
top: 0;
left: 0;
width: 200px; /Width of left frame div/
height: 100%;
overflow: hidden; /Disable scrollbars. Set to “scroll” to enable/
background-color: navy;
color: white;
}
#framecontentRight{
left: auto;
right: 0;
width: 150px; /Width of right frame div/
overflow: hidden; /Disable scrollbars. Set to “scroll” to enable/
background-color: navy;
color: white;
}
#maincontent{
position: fixed;
top: 0;
left: 200px; /Set left value to WidthOfLeftFrameDiv/
right: 150px; /Set right value to WidthOfRightFrameDiv/
bottom: 0;
overflow: auto;
background: #20a6fd;
}
.innertube{
margin: 15px; /Margins for inner DIV inside each DIV (to provide padding)/
}
-
html body{ /IE6 hack/
padding: 0 150px 0 200px; /Set value to (0 WidthOfRightFrameDiv 0 WidthOfLeftFrameDiv)/
} -
html #maincontent{ /IE6 hack/
height: 100%;
width: 100%;
}
<?php } echo ''; ?>
Sample text here
Ahhh... The memories...
Do we really need them, old males??? The young ones are not as slow as you were!!!
1. A robot may not injure a human being or, through inaction, allow a human being to come to harm.
2. A robot must obey the orders given to it by human beings, except where such orders would conflict with the First Law.
3. A robot must protect its own existence as long as such protection does not conflict with the First or Second Law.
0. A robot may not harm humanity, or, by inaction, allow humanity to come to harm.
[/php]
Any help would be much appreciated, as I cannot figure it out…
Always,
Jacques P.