Pitayan / gatsby-theme-pitayan

A minimal blog theme plugin for Gatsby
https://pitayan.github.io/gatsby-theme-pitayan/
MIT License
30 stars 11 forks source link

Disable email/mailchimp "banner" #29

Closed remiks closed 1 year ago

remiks commented 1 year ago

Is there any way I can disable the whole banner and hide the subscription to newsletter?

image
daiyanze commented 1 year ago

There's not such option to directly hide the subscription panel. But there's a css class attached to such component. You could just override the style to achieve hiding it.

Create a stylesheet file under src/assets/. This also supports Tailwindcss @apply.

.subscription {
  display: none;
}
remiks commented 1 year ago

Awesome! Thanks @daiyanze !