I have been searching online and tried the recommended solutions, but it seems like the footer is still overlapping my page. Does anyone know why this might be happening?
footer {
background: rgba(0, 0, 0, .93);
I read on some forums that setting the min height to 100% could help.
min-height: 100%;
However, even after setting the position, I am encountering the same issue.
position: relative;
}
h4 {
text-align: center;
font-family: 'open_sansbold', sans-serif;
font-size: 30px;
font-weight: 700;
color: white;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 10px;
padding-top: 13em;
}
footer p {
text-align: center;
font-family: 'open_sansbold', sans-serif;
font-size: 18px;
font-weight: 700;
color: white;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 5px;
padding-top: 0.5em;
}