Hello,
I am making a website that will look good in any resolution(its called fluid i think) and i wont that div "space" will be 30% height, but its not working :(
<div id="bg"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/bg.jpg" width="100%" height="100%" alt="">
<div class="space">
</div>
<div class="content">
somthing thats needs to be ~30% from top
</div>
</div>
style.css
#bg {position:scroll; top:0; left:0; width:100%;}
.space{
display:block;
background: url('images/tuscias.png') no-repeat center bottom transparent;
width: 100%;
float: left;
position: relative;
height: 30%;
overflow: hidden;
z-index: 1;
}