Here is the website in question:
www.searchingforthereal.com
I am fairly new to css and I am having some sizing problems. I am using a photo for the background of this website and along the left hand side I have a .png that I would like to run the entire distance of the background. Now in order to get the background to re-size with the browser properly I have set it up as fallows.
#bg {
min-height: 100%;
min-width: 1300px;
width: 100%;
height: auto%;
position: absolute;
top: 0;
left: 0;
z-index:0;
}
The bar on the left side of the screen is set up like this:
#Layer-2 {
position: absolute;
left: +114px;
top: 0px;
width: 171px;
height: 100%;
z-index: 1;
}
The problem is that the image will sometimes exceed the size of the browser window. If you scroll when this happens the bottom of the left bar will cut off. It is sizing to the browser window and not the background image.
Any ideas would be greatly appreciated.