I have a problem, how to display a left colum background image to the whole
width od left side, regardles mainpart length.
// HTML
<div id="wrapper">
<div id="left_side"> ... something ... </div>
<div id="main_side">... something ... </div>
<div id="footer"> ... </div>
</div>
//CSS
#wrapper{
width:900px;
position: relative;
text-align:left;
height:100%;
margin: 0 auto;
padding:0px 0px 0px 0px;
background-color: #F2F4DC;
}
#left_side {
float:left;
width:190px;
height:100%;
background-image: url('../images/background_img.gif');
background-repeat:repeat-y;
}
#main_side {
float:left;
width:710px;
}
#footer {
clear: both;
height:20px;
color:white;
font-size:9pt;
background-color: #F38526;
}
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/