turtatical Here's the HTML code (needs to be placed in the location I identified above)
<div id='console-nav-footer'>
<div id='footer-content'>
<div id='floatleft'>
<i class='fal fa-comment'></i><a class='feedback-menu-left' target='_blank'href='https://infosecforge.io/feedback'>Feedback</a>
</div>
<div id='floatright'>
<a class='feedback-menu-right' target='_blank' href='https://discuss.infosecforge.io/p/1-guidelines'>Terms</a>
<a class='feedback-menu-right' target='_blank' href='https://infosecforge.io/policies/'>Privacy</a>
</div>
</div>
</div>
You'll of course want to modify the HREF to it points to your installation, but you'll get the idea.
The CSS I currently use is as follows
Tailor this to suit your own install (note, that there are classes added to support the Dark Mode extension)
#console-nav-footer {
padding: 0 20px;
text-align: left;
line-height: 30px;
height: 30px;
background-color: #f5f5f5;
position: fixed;
width: 100%;
bottom: 0;
}
body.dark #console-nav-footer {
background-color: rgba(0,0,0,0.4);
}
a.feedback-menu-left,
a.feedback-menu-right{
color: #158CBA;
font-weight: 600;
}
#floatright {
float: right;
margin-right: 5px;
}
div#floatright a {
margin-left: 10px;
}
#floatleft {
float: left;
margin-left: 5px;
}
div#floatleft a {
margin-left: 0px;
}