http://intermundi.webbiznz.co.nz/in_pro ... ault_1.htm
Cheers,

Code: Select all
//outer table height of 100% applied to layout (all bocks input area)
.heightFull{
height:100%;
}
//for content area (center) - fixed height 400px
.heightFixed {
height:400px;
}
//for top area
.heightVariableTop{
height:25%;
vertical-align: bottom;
}
//for bottom area
.heightVariableBottom{
height:25%;
vertical-align: top;
}
Code: Select all
<div id="header"></div>
<div id="content">your flashcontent</div>
<div id="whitestripe">The blue speaker at the left</div>
<div id="footer"></div>
Code: Select all
/* Css Stylesheet: */
html,body {
margin: 0;
padding: 0;
width:100%;
}
#header {
height:yourheight;
width:100%;
background:url(../../img/im/lattice.jpg) black;
/*you'd need to either create another div layer or combine shim.gif and lattice.gif */
background-repeat:no-repeat;
background-position:bottom center;
}
#content {
height:yourheight;
width:100%;
overflow:auto;
}
#whitesripte {
height:yourheight;
width:100%;
background:url(../../img/im/default_name_right.gif) white;
background-repeat:no-repeat;
background-position:top right;
}
#footer {
height:yourheight;
width:100%;
background:url(../../img/im/default_tag.gif) grey;
background-repeat:no-repeat;
background-position:top right;
/* see selfhtml css section for further instructions on background-position! */
}
Code: Select all
#header {
height:25%;
width:100%;
background:url(img/im/stars.jpg);
background-repeat:repeat;
vertical-align: bottom;
}
Nicely done!pico wrote:Hi
I have done it also with CSS and I have solved the IE/FF like this
http://www.hdk-online.de/css.phtml