My main content div contains the content and sidebar, with a background image and a minimum height of 1200px assigned to it.
Despite assigning properties to the #main in Chrome & Firefox, the source inspection shows no properties, resulting in the background image and height not functioning as intended.
<!--Main content layout -->
#main {
clear:both;
position: relative;
min-height: 1200px;
background-image:url(images/white.png);
background-repeat: repeat-x;
}
.sidebar1 {
float: right;
width: 20%;
padding-bottom: 10px;
margin-top: 20px;
}
.content {
padding: 10px 0;
width: 76%;
float: left;
margin-top: 20px;
}
The website link is:
I would appreciate another set of eyes looking into this. This method has worked for me before, so I'm unsure why it's failing now.