I was thinking of a method of creating a footer on the home page (and on all pages) and in that footer having icons for accessing other options, is there a way to do this with a script? css? or some component theme?
If you don’t find exactly what you need by entering terms such as “footer”, “sticky footer”, etc, it’s likely you’ll have either to pay someone to do it or do it yourself.
If you want to try creating a custom footer yourself, here’s a starting point.
Create a new theme component in your forum. In Edit CSS/HTML, Mobile tab → Body, put this HTML code:
<div id="footer-test">
test footer
</div>
In Mobile tab → CSS, put this SCSS code:
#footer-test {
position: sticky;
bottom: 0;
z-index: 2;
height: 80px;
background: red;
text-align: center;
body[class=""] & { // prevent the footer from being displayed during the splash screen
display: none;
}
}