CSS Code to Remove Header Image on Listed blog
January 2, 2023•86 words
I dislike the header and meta image feature in the Listed blog settings.
Here's the code and steps to remove that setting:
Step 1: Create a new note in Standard Notes and call it "no-header-theme.css" (the name can be anything).
Step 2: Copy the following metadata structure and CSS, then paste it into your note.
---
metatype: css
---
/* Hides author image */
.header-image-container {
display: none;
}
Step 3: Publish the note to your blog. Hopefully, this should remove the header image.