The design of my site (using Bootstrap) is when the user has scrolled to the bottom, the fixed header touches the link in the footer. On small screens it works fine. Like so -
But on a larger screen resolution (1024x768 upwards), the header stops before it reaches the footer. Like so -
I know that the html and body have to have a defined height so added this -
html, body {
height:100%;
}
but didn't work.
I also tried giving the footer a height -
#bottom{
border-top: none;
font-family: Calibri, san-serif;
letter-spacing:2px;
text-transform:uppercase;
color:#000!important;
font-size: 20px;
}
.botwid{
min-height: 500px;
padding-top: 35px;
width: 100%;
margin: 0 555px;
but that didn't work either.
Thanks