I want to remove the e-mail input area and subscribe button from the inner header. I’m using default “source” theme. How can I do that? Thank you.
It’s always helpful if you link your site. This is a guess based on the source demo. Put the text in your sitewide code injection (header), found at /ghost > settings (gear icon in lower left) > code injection:
<style>
.home-template .gh-header .gh-form {
display: none;
}
</style>
(I’m guessing you’re not running the official Source, but a fork, since I see you’ve got translations, something not supported by official themes yet.)
1 Like