** UPDATE **
I was able to succesfully incorporate the Java code and provide a solution for those interested.
The demo project can be downloaded here...
https://www.mostholyplace.org/misc/test ... ooter4.wbs
The sample project can be previewed here...
https://www.mostholyplace.org/misc/test ... e_footer/4
The JavaScript is embedded in the project on the Master Page as an HTML Object to make file sharing easier.
Here is the code...
Code: Select all
<script>
// get contentarea height
function getcontentareaheight()
{
// select contentarea element
const contentarea = document.querySelector('#FlexGrid1');
// get rendered styles
const styles = window.getComputedStyle(contentarea);
// set contentarea height rendered style
const contentareaheight = styles.height;
// set CSS as a value
document.documentElement.style.setProperty("--contentarea_height", contentareaheight);
}
addEventListener("resize", getcontentareaheight);
addEventListener("orientationchange", getcontentareaheight);
getcontentareaheight();
</script>
Under 'type' I put it at 'end of page'. I have no idea if that is a good idea or not.
Please note that this is the first time I ever made a Java Script, so use with caution.
The Footer on the Master Page has CSS embedded as well...
Code: Select all
height:calc(100vh - 100px - var(--contentarea_height));
I subtracted 100 pixels for the Header.
Suggestions on how to improve are welcome.
