I came across a sticky footer that met my needs, but now I am facing an issue. When I increase the resolution beyond my normal setting, the code works fine but there is spacing between the container div and the footer div. I have attached a screenshot to show what I currently have and what I am trying to achieve.
Based on the image, I want to stick (A) and (B) together so that the entire section appears as one cohesive unit. Below, I have included my CSS code. Due to the complexity of the HTML and CSS, I am unable to use JSfiddle. I am utilizing the Twitter Bootstrap framework for this project.
html {
position: relative;
min-height: 100%;
}
body {
margin: 0 0 100px; /* bottom = footer height */
}
footer {
background: none repeat scroll 0 0 #FFFFFF;
border-left: 1px solid #E1E1E1;
border-right: 1px solid #E1E1E1;
border-bottom: 1px solid #E1E1E1;
position: absolute;
bottom: 0;
height: 100px;
}
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
margin: 0 auto -142px;
}