Forum Moderators: not2easy
.content{
padding: 0px;margin:0px;
width:961px;height:100%;
float:left;
}
#bgLeft {
width:5px;height: 100%;
min-height: 100%;
background: url(img/bg_left.gif) repeat-y;
float:left;
}
#bgRight {
background:url(img/bg_right.gif) repeat-y 100%;
width:5px;height:100%;
min-height:100%;
float:left;
}
.bodyMain{
padding: 0px;margin:0px;
width:735px;height:100%;
background-color: #f8f8f8;
float:left;
}
And here is a copy of my html
<div class="content" align="left">
<div id="bgLeft"> </div>
<div class="bodyMain" >
<!-- ###CONTENT### -->
</div>
<div id="bgRight"> </div>
</div>
n.b.: the content of my site must have two lines images (one left and one right - see bgLeft and bgRight stylesheet), whose height depends on the content space.
In IE7 I can see the bgLeft and bgRight images, but not for all the vertical height, in Firefox I cannot see nothing.
Could someone help me?
[edited by: Marfola at 11:33 am (utc) on July 29, 2008]
.bodyMain{
padding: 0px 5px;
background: url(img/bg_left_and_right_combined.gif) repeat-y;
margin:0px;
width:735px;height:100%;
background-color: #f8f8f8;
float:left;
}
Marshall