Please, how remove preview button from my vanilla forum? thanks. Sorry for my english
CSS will do the trick:
.PreviewButton { display: none !important; }
!important must be used as the preview/edit buttons are toggled using JS meaning they get inline styles applied.
!important
Kasper Kronborg Isager (kasperisager) | Freelance Developer @Vanilla | Hit me up: Google Mail or Vanilla Mail | Find me on GitHub
Thanks !!!
Comments
CSS will do the trick:
!important
must be used as the preview/edit buttons are toggled using JS meaning they get inline styles applied.Kasper Kronborg Isager (kasperisager) | Freelance Developer @Vanilla | Hit me up: Google Mail or Vanilla Mail | Find me on GitHub
Thanks !!!