# Customising the Footer The footer on the bottom right corner showing *Powered by Obsidian Publish* by default can be hidden or edited. To hide the footer, put this in ```publish.css```: ```CSS .site-footer a { display: none; } ``` As you can see in the bottom right corner of my page, the footer shows *by @stephanlevin*. This was achieved by adding these lines in ```publish.css```: ```CSS .site-footer::after { content: 'by @stephanlevin'; color: grey; } ```