here's the webpage created by me
nitesh.x10hosting.com
the problem is that the background image for the navigation panel does not fill up to the end of the page but only till below the menu
here's the css defiing the layout of my webpage
how do i make it fill to the bottom of the page.
nitesh.x10hosting.com
the problem is that the background image for the navigation panel does not fill up to the end of the page but only till below the menu
here's the css defiing the layout of my webpage
Code:
html
{
width:100%;
max-width:100%;
padding:0;
margin:0;
border:0;
}
body
{width:100%; max-width:100%; padding:0; margin:0; border:0}
#head
{
position: absolute;
margin:0; top: 0; right:0px;
display:block;
width:100%; height:150px;
background: url(images/stars.jpg) ;
z-index:5;
opacity:1.0}
#user_status
{position: absolute;
margin:0; top: 150px;
display:block; width:100%; height:80px;
background: url(images/stars.jpg) ;
z-index:5; opacity:1.0}
#left
{
position: absolute; left:0; right:0; bottom:0; top:230px;
height: inherit; width:25%;
padding-top: 15px;
overflow: visible;
background: url(images/stars.jpg) repeat ;
z-index:4
}
#right
{
position: absolute; left:25%; right:0; bottom:0; top:230px;
padding : 10px 0 0 10px;
height:100%;
border-left: ridge #003333 thick;
border-top: ridge #003333 thick;
z-index:3
}
#foot
{
position: absolute; margin:0; top: 0px; right:0px; display:block; width:100%; height:150px; background: #0099FF; z-index:5; color:#fff
}
div.head
{
font-family:Geneva, Arial, Helvetica, sans-serif;
font-size: 30px;
text-align: center
}
div.content
{
display: inline;
font-family: "Courier New", Courier, monospace
}
how do i make it fill to the bottom of the page.