My website uses a single stylesheet, but I'm having an issue with the footer div on the secondary page not aligning at the bottom like it does on the home page. Can someone help me troubleshoot this CSS problem? Below is the code snippet for my home page:
/* Dropdown Button */
.dropbtn {
background-color: #333;
color: white;
padding-left: 35%;
font-size: 45px;
width:50px;
height:55px;
border: none;
cursor: pointer;
}
/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
background-color: #AARRGGBB;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: absolute;
display: inline-block;
}
...
... (omitted some lines for brevity)