/* This should hide first H1 tag in notes */
.CodeMirror-code > div:first-child > .HyperMD-header-1 {
display: none;
}
/* This do the same for markdown-preview */
.markdown-preview-view > div:first-child h1:first-child {
display: none;
}
EDIT: Update the code for preview mode.