Hello,
on my site I have a wrapper div that lets me have a rectangle in the middle of the screen and I have placed my content in this div
I have about 6 other Divs that fit into this wrapper
below is a sample of two of them.
You will notice that I have reletive position on the divs so that the page will remain liquid. the issue I am having is that I have soo much room on the bottom of the pages due to the div having a top property of -1134.
How can I fix this?
Thanks
on my site I have a wrapper div that lets me have a rectangle in the middle of the screen and I have placed my content in this div
Code:
#wrapper {
background-color:#97d4ff;
width:960px;
height:990px;
margin:0px auto;
}
below is a sample of two of them.
Code:
#Logo{
position:relative;
top:0px;
left:0px;
z-index:1;
}
Code:
#mainContenta{
font-family:Verdana, Arial, Helvetica, sans-serif;
width:500px;
position:relative;
top:-1134px;
left:200px;
font-size:24px;
}
How can I fix this?
Thanks