Is there a way to adjust the position of the header text ("bottom text") so that it appears just above the bottom border of the page? I have attempted modifying styles and classes within the footer, style, and h3 tags but have not had any success. Below is the relevant code snippet:
<footer>
<style>
h3 {position:fixed; solid white;
width:100%;
border-bottom:4px solid white; text-align:center;
}
.bottom-text {position:absolute; solid white; width:100%; text-align-center; color:white;}
</style>
<h3 class="bottom-text" style="border-bottom:5px; border-bottom-style:solid;
border-bottom-color:white; padding-bottom:17em; color:white; font-family:arial;">bottom page</h3>
</footer>
</html>