How to remove 'Powered By Ghost' in Ghost blog site footer?

Here is a quick guide to remove/hide the ‘Powered By Ghost’ in the Casper theme footer your Ghost blog site:

  1. Log in to your Ghost account.
  2. Go to your ‘settings’ panel by clicking the gear icon at the bottom of the left admin panel.
  3. Click on ‘Code Injection’.
  4. 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.