Here is a quick guide to remove/hide the ‘Powered By Ghost’ in the Casper theme footer your Ghost blog site:
- Log in to your Ghost account.
- Go to your ‘settings’ panel by clicking the gear icon at the bottom of the left admin panel.
- Click on ‘Code Injection’.
- Paste the following code into the ‘Site Header’ section:
<style>
@media only screen and (min-width: 1000px) {
nav.site-footer-nav {
width: 70%;
}
}
.site-footer.outer .inner div a {
display: none;
}
</style>
Enjoy.