On the Contact Page of our client's website, there seems to be an issue with the footer not sticking to the bottom of the page and hiding the submit button.
https://i.stack.imgur.com/txqAS.png
We attempted to fix this using CSS, but it either sticks and remains visible at all times or leaves the bottom and hides the submit button when scrolling.
.footerclass {
background-color: #eeeeee;
position: fixed;
top: auto;
bottom: 0;
width: 100%;
display: inline-block;
}
This issue is only occurring on the Contact Us page, where we are using a "Contact 7 form" through elementor. How can we resolve this so that the footer always stays at the bottom of the page regardless of the form's size?