
How to add a single-line Footer?
Many users have asked to add a footer, so till we work on a permanent and robust solution for this, below is a quick and easy way to add a single-line footer to your site.
Add following code in Custom JS in Admin Panel and make sure you edit line 3 with your text.
let content = document.querySelector('main')
let footer = document.createElement('footer')
footer.innerHTML = 'Copyright © 2020 - TMail'
content.appendChild(footer)
Add following code in Custom CSS in Admin Panel
footer {
background: #111;
color: #fff;
padding: 10px;
text-align: center;
}