I am having a bit of an issue here... I have a Div and its called leftSideBar and inside it has two images, a top and a bottom and this div has a repeat-y background. It did have a min-height but I used jquery to get the height of my content div like so...
$(document).ready(function() {
var div_height = $("#content").height();
$(".leftSideBar").css("height", div_height);
var div_height = $("#content").height();
$(".rightSideBar").css("height", div_height);
});
What I am trying to do is have the top image at the top of the div and the bottom image at the bottom of the div...here is the HTML...
<div class="leftSideBar">
<img src="images/leftSideTop.jpg" width="174" height="70" border="0" />
<img src="images/leftSideBottom.jpg" width="174" height="98" border="0" />
</div><!--leftSideBar-->
<div class="content" id="content"></div><!--content-->
<div class="rightSideBar">
<img src="images/rightSideTop.jpg" width="174" height="70" border="0" />
<img src="images/leftSideBottom.jpg" width="174" height="98" border="0" />
</div><!--rightSideBar-->
and the CSS
.leftSideBar{
background:url(../images/leftSide.jpg) repeat-y;
float:left;
margin-top: -49px;
width:174px;
}
.rightSideBar{
background:url(../images/rightSide.jpg) repeat-y;
float:right;
margin-top: -49px;
width:174px;
}
.content{
background:#FFF;
width: 992px;
position:relative;
min-height: 591px;
float:left;
margin: -48px auto 0;
font-size:13px;
}
Any help or a point in the right direction would be awesome! Thanks!