tiamat2012
Programmer
Hey guys,
so I'm trying to make my right and left column extend infinitely, or as far as there is content on the page, do you know how to do that?
Here's my css code:
You can see the actual website by going to kerryj.awardspace.com/skills.php
Thank you for your time!
-Kerry
so I'm trying to make my right and left column extend infinitely, or as far as there is content on the page, do you know how to do that?
Here's my css code:
Code:
div#header
{
position:absolute;
left: 20%;
background:darkblue;
width:80%;
height: 15%;
text-align: center;
}
div#lmenu
{
position:absolute;
top: 15%;
width:20%;
height: 100%;
background-color:darkblue;
background-attachment: fixed;
background-repeat: repeat-y;
}
div#maincontent
{
position:absolute;
top:15%;
left: 20%;
width: 60%;
height: 100%;
background: transparent fixed;
}
div#rbanner
{
position:absolute;
top:15%;
left: 80%;
width: 20%;
height: 100%;
background: url(rbanner.jpg) repeat-y fixed top right;
}
You can see the actual website by going to kerryj.awardspace.com/skills.php
Thank you for your time!
-Kerry