Hello @phenomlab
I have almost the same footerbar as yours without the welcome message. (your old one actually)
I just wanted to add some text in its center.
Rather than having 2 blocks (left and right) I wanted a left, center, right block.
I added a div in the middle of the 2 but the right div is no longer displayed.
html :
<!DOCTYPE html>
<br>
<br>
<div id="console-nav-tab"><i class="fa-solid fa-angles-left"></i></div>
<div id="console-nav-footer">
<div id="footer-content">
<div id="floatleft"> ©2022 XXXXXXXXXXXX
<div class="margin-left">
<a href="https://XXXXXXXXxxxxxxxxxxxxxxxxxx" class="far fa-file-alt"></a>
</div>
<div class="margin-left">
<a href="https://XXXXXXXXxxxxxxxxxxxxxxxxxx" class="fas fa-users"></a>
</div>
<div class="margin-left">
<a href="https://XXXXXXXXxxxxxxxxxxxxxxxxxx/" class="fab fa-wikipedia-w"></a>
</div>
<div class="margin-left">
<a href="https://XXXXXXXXxxxxxxxxxxxxxxxxxx" class="fas fa-bug"></a>
</div>
</div>
<div id="floatcenter">
<div class="textcenter">!!!!!!! Some new center footerbar text !!!!!</div>
</div>
<div id="floatright">
<a class="feedback-menu-far-right" target="_blank" href="https://XXXXXXXXxxxxxxxxxxxxxxxxxx">RGPD</a>
<a class="feedback-menu-far-right" target="_blank">|</a>
<a class="feedback-menu-far-right" target="_blank" href="https://XXXXXXXXxxxxxxxxxxxxxxxxxx">@dev</a>
<a class="feedback-menu-far-right" target="_blank">|</a>
<a class="feedback-menu-far-right" target="_blank" href="hhttps://XXXXXXXXxxxxxxxxxxxxxxxxxx">Hetzner Affiliation</a>
<a class="feedback-menu-far-right" target="_blank">|</a>
<a class="feedback-menu-far-right" target="_blank" href="https://sudonix.com">Sudonix </a>
</div>
</div>
</div>
CSS:
div#console-nav-tab {
position: fixed;
bottom: 0px;
/*z-index: 1100;*/
z-index: 1050;
height: 30px;
left: 0px;
}
div#console-nav-tab i {
font-size: 16px;
margin-left: 10px !important;
line-height: 2.0 !important;
}
.toBottom {
bottom: 0px !important;
}
/*Desktop*/
#console-nav-footer {
background-color: #eeeeee;
border-top: 1px solid #aaa;
position: fixed;
bottom: 0;
height: 30px;
padding-left: 10px;
padding-right: 10px;
left: 0;
right: 0;
z-index: 1000;
}
#floatleft {
float: left;
padding-left: 25px;
bottom: 1px;
font-size: 90%;
line-height: 2.3;
font-weight: bold;
display: flex;
color: #666666 !important;
}
.margin-left {
margin-left: 5px;
font-weight: 500 !important;
}
a.far.fa-file-alt {
/*background: #007bb5*/
/*background: #bbb;*/
background: #eee;
/*color: white;*/
color: #6c757d;
height: 33px;
padding: 7px;
font-size: 16px;
width: 33px;
text-align: center;
text-decoration: none;
box-shadow: none;
border-radius: 0px;
background-image: none !important;
-webkit-background-clip: unset !important;
-webkit-text-fill-color: unset !important;
}
a.fas.fa-users {
color: #6c757d;
height: 33px;
padding: 7px;
font-size: 16px;
width: 33px;
text-align: center;
text-decoration: none;
box-shadow: none;
border-radius: 0px;
/*background: #55ACEE;*/
background: #eee;
background-image: none !important;
-webkit-background-clip: unset !important;
-webkit-text-fill-color: unset !important;
}
a.fab.fa-wikipedia-w {
color: #6c757d;
height: 33px;
padding: 7px;
font-size: 16px;
width: 33px;
text-align: center;
text-decoration: none;
box-shadow: none;
border-radius: 0px;
/*background: #55ACEE;*/
background: #eee;
background-image: none !important;
-webkit-background-clip: unset !important;
-webkit-text-fill-color: unset !important;
}
a.fas.fa-bug {
color: #6c757d;
height: 33px;
padding: 7px;
font-size: 16px;
width: 33px;
text-align: center;
text-decoration: none;
box-shadow: none;
border-radius: 0px;
/*background: #bb0000;*/
background: #eee;
background-image: none !important;
-webkit-background-clip: unset !important;
-webkit-text-fill-color: unset !important;
}
#floatcenter {
bottom: 1px;
font-size: 90%;
line-height: 2.3;
font-weight: bold;
display: flex;
color: #666666 !important;
}
.textcenter {
margin-left: auto;
margin-right: auto;
font-weight: 800 !important;
}
#floatright {
float: right;
bottom: 1px;
font-size: 90%;
line-height: 2.3;
display: flex;
}
a.feedback-menu-far-right {
padding-right: 5px;
padding-left: 5px;
text-decoration: none;
color: #666666 !important;
font-weight: bold;
}
Here the result
Thank you for the tips