I changed the CSS file to remove that 2nd background but the horizontal bar is still there. The commented out items are what I removed, and added a height: 100%; to the #wrapper. I also changed the content to a specific width as well.
#wrapper {
/* width: 85%; */
width: 100%;
height: 100%;
/* min-width: 1000px; */
/* background-image:url('../images/bckgrnd_inner.png'); */
margin: auto;
}
#content {
/* width: 85%; */
height: 100%;
/* min-width: 958px; */
width: 959px;
margin: auto;
color: white;
border: 5px solid pink;
I put the large pink border around the content to see where it goes, and for some reason it does not go to the bottom of the page. I can specify a specific px height instead of height: 100%; ... is that a better option to do? I don't want it to appear wrong with some varying window heights on others' computers.
I've put the updated version at http://www.somaluxury.net/dev3
Thank you.