The Banners plugin for Obsidian transforms note customization by adding banner images and icons. Users can set banners using local images or URLs, reposition them with ease, and lock them in place for consistency. Emojis can also be added or adjusted as decorative icons, enhancing note visuals. Customization extends to banner height, style (solid or gradient), and whether banners appear in embeds or previews. Advanced settings include mobile compatibility and personalized frontmatter fields. With features like Twemoji support and a dedicated image folder, Banners empowers users to create visually appealing, personalized notes, making organization both functional and beautiful.
Just a small hotfix because I missed a thing, whoops
Full Changelog: https://github.com/noatpad/obsidian-banners/compare/1.3.2…1.3.3
An Obsidian plugin to add banner images (and icons) to your notes!
Within an open note, you can use the Add/Change banner with local image command to select a local image as a banner for your note; or you can copy an image URL & run the Paste banner from clipboard command to paste the URL as a banner image. You can also drag the banner image to reposition the image, as well as use the Lock/Unlock banner position command to "lock" the banner's position in place and vice versa.
If you want to remove the banner, you can run the Remove banner command to do just that.
You can also add a banner icon, using Add/Change emoji icon & selecting an emoji of your choice. You can also change an existing emoji by clicking on it in the preview.
Similarly, you can remove the icon with the Remove icon command.
Under the hood, this plugin uses your file's YAML frontmatter/metadata to store info about your banner. So you can also input it manually or use other plugins to input it for you. These are the fields you can use thus far (using the default frontmatter field prefix):
# The source path of your banner image, can be a URL or an internal link to an image.
# NOTE: Make sure it's wrapped in quotes to avoid parsing errors, such as "![[file]]"
banner: string
# The banner's center position. A number between 0-1
banner_x: number
banner_y: number
# Determines if the banner is locked in place or not
banner_lock: boolean
# The banner icon. Can be an emoji or any string really (but it'll only accept the first letter)
banner_icon: string
Solid | Gradient |
---|---|
![]() |
![]() |
banner
will use the fields banner_x
, banner_y
, and so on.This plugin has been tested on desktop from 0.12.12 onwards (previously MacOS and currently Windows) and on mobile from 1.0.4 onwards (iOS). It probably works fine on older versions, but just a heads up.
main.js
, styles.css
, & manifest.json
)<vault>/.obsidian/plugins
), create a folder called obsidian-banners
, and move your files in there.banner
, banner_x
, banner_y
, … fields in my note's frontmatter?This plugin uses the frontmatter to store data about your note's banner, such as its positioning and such. The fields you can use are listed here and the prefix can be customized using the Frontmatter field name setting.
There are a few cases, but it depends. Because of how it functions, any plugin that conflicts with Banners' styling may cause issues. It's rather situational, but I'm planning to address some styling fixes for those conflicts down the line.
Currently some plugins reported to conflict with Banners are:
Once you run npm i
, you can build the files into dist/
easily by running npm run build
.
You can also have it watch your files and update your plugin within your vault while you develop by running npm run dev
. Just make sure to set DEVDIR
in ./esbuild.config.mjs
to your testing vault beforehand.