On my end, I can see that this is the code you currently have:
.footer-bar {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
@media (min-width: 769px) {
.copyright-bar {
position: absolute;
}
.footer-bar {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
}
See: https://share.getcloudapp.com/Wnuy15bD
The first part should be removed. Specifically, it should just be:
@media (min-width: 769px) {
.copyright-bar {
position: absolute;
}
.footer-bar {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
}
Kindly modify your CSS any let us know how it goes. 🙂