Banners Reloaded

by Dani García
5
4
3
2
1
Score: 36/100

Description

The Banners Reloaded plugin lets you place image banners on notes and control how they look across the vault without turning setup into manual frontmatter work on every page. It uses a clear priority model where note level banners override tag rules and global defaults, so broad styling and note specific exceptions can live together. The plugin also handles header text and icons, template based titles, desktop and mobile heights, embeds, popovers and draggable vertical positioning. If you want tighter control, most settings can be overridden per note through frontmatter, including style, height, alignment and header behaviour. The README also mentions a conversion tool that standardises older banner paths into wikilink format for easier cleanup.

Reviews

  • Ganessh Kumar R P
    Reviewed on Mar 22nd, 2026
    No review text provided.

Stats

stars
7,148
downloads
0
forks
47
days
NaN
days
NaN
days
0
total PRs
0
open PRs
0
closed PRs
0
merged PRs
0
total issues
0
open issues
0
closed issues
0
commits

Latest Version

Invalid date

Changelog

README file from

Github

Banners Reloaded

Banners Reloaded offers a simple, fast, and lightweight way to add beautiful and customizable banners to your Obsidian notes. Designed for performance, it gives you powerful control over your vault's appearance through an intuitive interface. Set banners globally, by tag, or override them on any individual note.

Banners Plugin Demo

Table of Contents

Features

  • Powerful Banner Hierarchy: Control which banner is displayed with a clear priority: Specific Note > Tag Banner > Global Banner.
  • Visual Styles: Choose from 5 different visual styles, including gradients, blurs, and curved "swoosh" effects.
  • Content Positioning: Fine-tune where your note's text starts using the Content Margin setting. Overlap text onto the banner for a modern look.
  • Interactive Vertical Alignment: Vertically drag any banner to focus on the perfect part of the image. The position is automatically saved to the note's frontmatter.
  • Overlay Headers: Add titles and icons over your banners, with full control over their vertical and horizontal alignment, decoration, and size.
  • Powerful Header Templating: Dynamically display content in your headers. Use {{filename}} for the note's name, or insert any frontmatter property like {{status}} or {{author}}. It even resolves nested variables (e.g., if your frontmatter has title: "Project {{project_name}}").
  • Tag-Based Rules: Associate banner images with specific tags. It even supports nested tags (#family/project)! Rules at the top of the settings list have higher priority.
  • Adaptive Design: Set different banner heights for desktop, mobile, and embed/popover contexts.
  • Full Context Support: Banners work in the main note view, in note embeds, and in link preview popovers.
  • Intuitive Settings:
    • Select images from your vault with a file selector that includes image previews.
    • Define a banner folder to narrow down searches.
    • Enjoy folder autocompletion in the settings.
    • Reorder the priority of tag banners with drag-and-drop.
  • Migration Tool: Includes a tool to easily standardize your vault by converting banner paths from plain strings or embeds to the standard Wikilink format [[image.png]].

Installation

Once the plugin is approved, you will be able to install it directly from the Obsidian Community Plugin Store.

  1. Go to Settings > Community Plugins.
  2. Make sure "Safe Mode" is turned off.
  3. Click Browse to open the community plugin store.
  4. Search for "Banners Reloaded".
  5. Click Install.
  6. Once installed, click Enable.

Using BRAT (for pre-releases and testing)

For those who want the latest features and updates before they are officially released:

  1. Install the BRAT plugin.
  2. Go to Settings > BRAT > Add Beta plugin and enter the URL https://github.com/dgcreations00/obsidian-banners-reloaded.
  3. Enable the plugin in Settings > Community Plugins.

Configuration Guide

Access the settings via Settings > Community Plugins > Banners Reloaded.

Banner Management

  • Banners folder: Define a default folder to search for images (e.g., Resources/Banners). If left empty, the entire vault will be searched. The image selector will use this folder.
  • Enable default banners: If enabled, notes that don't have a banner in their frontmatter (or a tag matching a rule) will display the global default banner.
  • Default banner image: The image to be used as a global fallback.

Note Properties

  • Frontmatter Property: The name of the main YAML property. The default is banner. All other override properties will use this name as a prefix (e.g., banner_y, banner_height).
  • Default banner height: The CSS height for banners in the main desktop view (e.g., 200px, 30vh).
  • Default mobile banner height: The height for the main view on mobile devices.

Visual Styling

Customize the look and feel of your banners.

  • Banner Style: Select the visual effect applied to the banner image.

    • Solid: The standard, rectangular cut. Solid Style
    • Gradient (Fade): Smoothly fades the bottom of the banner into transparency. Gradient Style
    • Blurred: Applies a blur effect. Great for low-res images or minimizing distractions. Blur Style
    • Swoosh (Convex): A modern, curved bottom edge. Swoosh Style
    • Swoosh (Concave): An inverted curve effect. Swoosh Inverted Style
  • Content start margin: Adjust the vertical distance between the banner and the note's text content.

    • Positive values: Add space between the banner and text.
    • Negative values (e.g., -50): Move the text UP to overlap the banner (perfect for use with Gradient or Swoosh styles).

Banner Header

  • Show default title/icon: Separate toggles to control whether the default text or icon is displayed on notes that do not explicitly define them.
  • Vertical/Horizontal Alignment: Defines the default position of the header on the banner (Top, Center, Bottom and Left, Center, Right).
  • Header decoration: Adds a visual effect (shadow or border) to improve legibility.
  • Title font size: The default CSS font size for the header text.
  • Icon size: The default CSS size for the header icon/emoji.
  • Default icon: An Obsidian icon ID (e.g., lucide-book) or an emoji.
  • Default header text: A template for the text that appears on the banner. You can use {{filename}} to insert the note's name, or {{your_property}} to use any value from the note's frontmatter. Nested variables are also supported.

Additional Contexts

  • Show banners in embeds/popovers: Toggles to enable or disable banners in these contexts.
  • Banner height in embeds and popovers: A specific height for these contexts, where space is often more limited.

Banners by Tag

This section allows you to create rules to assign banners to notes containing certain tags.

  • Add new tag rule: Creates a new row.
  • Drag and Drop: Use the handle on the left to change the order of the rules. Priority is from top to bottom: the first rule that matches a tag in the note (or one of its nested parts) will be applied.
  • Tag: The name of the tag without the #.
  • Select banner: Opens a selector to choose the image associated with that tag.

Maintenance

  • Banner conversion tool: Opens a modal that will search your entire vault and convert banner properties to the standard Wikilink format [[path/to/image.png]]. This is useful for standardizing your vault or migrating from plugins that used plain strings or embeds.

Per-Note Usage (Frontmatter Overrides)

You can override almost any global setting directly in a note's YAML frontmatter. Use the Frontmatter Property name you defined in the settings as a prefix.

Simple Example: Using wikilinks (recommended)

---
banner: "[[Banners/my-local-banner.png]]"
---

Using file path as string

---
banner: "Banners/my-local-banner.png"
---

Using remote images

---
banner: "https://images.unsplash.com/photo-1506744038136-46273834b3fb"
---

Disable a Banner in a Note: (Even if it has a banner tag or a global banner is active)

---
banner: none
---

Disable only the Header in a Note: (If a global header or icon is active)

---
banner: "[[Banners/my-local-banner.png]]"
banner_header: false
banner_icon: false
---

Full Example (assuming the prefix is banner):

---
# Priority 1: Specific banner for this note (can be local or remote)
banner: "[[Banners/my-local-banner.png]]"

# Style overrides
banner_style: "gradient"       # Options: solid, gradient, blur, swoosh, swoosh-inverted
banner_content_margin: -40     # Overlap text onto the banner

# Custom frontmatter data for the template
status: "In Progress"
project_name: "Obsidian Plugin"
title: "Notes on {{project_name}}" # Nested variable!

# Height override (ignores default values)
banner_height: "300px"
banner_mobile_height: "150px"

# Vertical position override (dragging the image updates this)
banner_y: "75%"

# Header override using a template
banner_icon: "lucide-star"
banner_header: "{{title}} - Status: {{status}}"

# Header alignment, style, and SIZE override
banner_header_v: "center"
banner_header_h: "center"
banner_header_decor: "border"
banner_header_title_size: "2.5em"
banner_header_icon_size: "3em"
---

Available Frontmatter Properties

Below are all the properties you can use, assuming the prefix in the settings is banner.

  • banner: The path to the banner image.
    • Accepts local paths (Wikilinks): "[[Banners/my_image.png]]"
    • Accepts local paths (Strings): "Banners/my_image.png"
    • Accepts external URLs: "https://example.com/image.jpg"
    • To disable a banner, use: banner: false or banner: none.
  • banner_style: The visual style of the banner. Values: solid, gradient, blur, swoosh, swoosh-inverted.
  • banner_content_margin: Adjusts the start position of the note content. Use negative numbers to overlap. (e.g., -20).
  • banner_height: CSS height for the banner in this note (applies to desktop, embeds, and popovers).
  • banner_mobile_height: Specific CSS height for this note on mobile.
  • banner_y: The vertical position of the image (from 0% to 100%). This is updated when you drag the image.
  • banner_header: The text to display in the header. Supports templates: use {{filename}} for the note's name or {{any_frontmatter_key}} to insert metadata. Nested variables are resolved. To disable, use: banner_header: false or banner_header: none.
  • banner_icon: An emoji or Obsidian icon ID to display. To disable, use: banner_icon: false or banner_icon: none.
  • banner_header_v: Vertical alignment of the header. Values: top, center, bottom, edge.
  • banner_header_h: Horizontal alignment. Values: left, center, right.
  • banner_header_decor: Text decoration. Values: none, shadow, border.
  • banner_header_title_size: CSS size for the title font (e.g., "2em", "25px").
  • banner_header_icon_size: CSS size for the icon/emoji (e.g., "2.5em", "30px").

Contributing

Contributions of any kind are welcome and greatly appreciated! If you're interested in helping improve Banners Reloaded, here are a few ways you can get involved.

Reporting Bugs

If you encounter a bug or unexpected behavior, please open an issue on GitHub. A great bug report includes:

  • A clear and descriptive title.
  • Detailed, step-by-step instructions on how to reproduce the issue.
  • What you expected to happen versus what actually happened.
  • Screenshots or GIFs are incredibly helpful!
  • Information about your environment (Obsidian version, plugin version, OS, etc.).

Before creating a new issue, please check if a similar one already exists.

Suggesting Enhancements

Have an idea for a new feature or an improvement to an existing one? Feel free to open an issue to start a discussion. The more detail you can provide about your use case and the problem you're trying to solve, the better.

Submitting Code Changes (Pull Requests)

Code contributions are always welcome, from small bug fixes to new features. To contribute:

  1. Fork the repository.
  2. Create a new branch for your changes (e.g., feat/add-new-alignment-option or fix/popover-rendering-bug).
  3. Make your changes to the code.
  4. Ensure your code is clean and follows the existing style.
  5. Submit a Pull Request with a clear description of what you've changed and why.

Contributing Translations

If you'd like to translate the plugin into your language, it's easy!

  1. In the src/l10n/ folder, copy the en.json file.
  2. Rename your copy to your language's two-letter ISO 639-1 code (e.g., fr.json for French, de.json for German).
  3. Translate all the string values in your new file, but be careful not to change the keys.
  4. Open the src/i18n.ts file and add your new language:
    • Add the import: import fr from './l10n/fr.json';
    • Add it to the locales object: const locales = { en, es, ru, fr };
  5. Submit a Pull Request with your changes.

Thank you for helping to make Banners Reloaded better!

A Note on the Original Banners Plugin

This plugin is a spiritual successor to the original Banners plugin created by noatpad.

While heavily inspired by the original's great concept and features, Banners Reloaded has been written entirely from scratch. The goal was to provide a modern, fast, and lightweight alternative built with the latest technologies, including Svelte 5. This new codebase ensures better performance, stability, and easier maintenance for future updates.

A big thank you to noatpad for the original idea that inspired this project.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.
Frontmatter Tag Sugest
4 years ago by Jonathan Miller
Autocompletes tags in Obsidian YAML frontmatter. No more deleting #!
Front Matter Title
4 years ago by Snezhig
Plugin for Obsidian.md
Open Related Url
4 years ago by Dan Pickett
Day and Night
4 years ago by Kevin Patel
An Obsidian plugin to automatically switch between day and night themes based on a set schedule
Quick snippets and navigation
4 years ago by @aciq
Quick snippets and navigation for Obsidian
FuzzyTag
3 years ago by Adrian
Note aliases
3 years ago by Pulsovi
This plugin manages wikilinks aliases and save them on the aliases list of the linked note
Heading Level Indent
3 years ago by svonjoi
obsidian plugin for hierarchical structuration of document content based on heading levels
Testing Vault
3 years ago by Michael Pedersen
Frontmatter Alias Display
3 years ago by muhammadv-i
A plugin for Obsidian.md to show front-matter aliases as display names in the file menu.
Auto Front Matter
3 years ago by conorzhong
Add an ID to the front matter
3 years ago by llimllib
Update frontmatter modified date
3 years ago by Alan Grainger
Automatically update a frontmatter/YAML modified date field
Header Enhancer
3 years ago by Hobee Liu
Level up your headers, customize your notes. Header Enhancer makes your notes header better and more useful.
Frontmatter generator
3 years ago by Hananoshika Yomaru
A plugin for Obsidian that generates frontmatter for notes
Sort Frontmatter
2 years ago by Kanzi
Sort frontmatter automatically
Time Things
2 years ago by Nick Winters
Show clock, track time spent editing a note, and track the last time a note has been edited.
Update Time Updater
2 years ago by MURATAGAWA Kei
Obsidian plugin to update the 'update time' element when saving or manually.
Draft Indicator
2 years ago by Brian Boucheron
Show draft status with ✎ icons in the Obsidian file explorer.
Front Matter Timestamps
2 years ago by LighthouseDino
Force note view mode
5 years ago by Benny Wydooghe
Banners
5 years ago by Danny Hernandez
An Obsidian plugin that adds banners to your notes
Title Serial Number
4 years ago by Domenic
This is an obsidian plugin, and it adds serial numbers to your markdown title.
Pixel Banner
2 years ago by Justin Parker
🚩 Enhance your Obsidian notes with customizable banner images, including AI-generated designs and a curated store of downloadable banners. Transform your workspace with visually stunning headers that add context, improve aesthetics, and take your note-taking beyond the ordinary.
Copy Section
2 years ago by skztr
Obsidian.md plugin adding a Copy button to the top of Headed sections
Featured Image
a year ago by Johan Sanneblad
Obsidian plugin to automatically set a featured image property in your notes based on the first image, YouTube link, or Auto Card Link image found in your document. This allows you to create rich note galleries using Folder Notes and Dataview.
Color Folders and Files
a year ago by Mithadon
Obsidian plugin to customize the appearance of folders and files through a context menu with color picker and style options.
Frontmatter Markdown Links
a year ago by mnaoumov
Obsidian Plugin that adds support for markdown links in frontmatter
Fold Properties By Default
a year ago by Tommy Bergeron
Always have editor/metadata properties folded by default.
Paste Image Into Property
a year ago by Nito
Note Favicon
a year ago by mdklab
Obsidian plugin – Show Favicon from Metadata
AI Note Tagger
a year ago by Jasper Mayone
Auto tagging obsidian notes w/ AI
Smart DayNight switcher
a year ago by Andrii Hrushetskyi
Title-Only Tab
a year ago by tristone13th
a plugin of obsidian for to change showing tab name to short
Image Border Style
a year ago by Anurag Shenoy
An Obisidian plugin to configure rounded borders for images (both in-editor and in reading-mode).
Note UID Generator
a year ago by Valentin Pelletier
Allow you to automatically generate UID for the notes in your vault.
Simple Banner
10 months ago by Sandro Ducceschi
Visually enhance your Obsidian notes with a customizable banner. Supports icons and time/date display.
Tag Index
10 months ago by wenlzhang
An Obsidian plugin that creates a curated list of important tags to serve as meaningful entry points to your knowledge base.
Current View
10 months ago by Lucas Ostmann
Automatically set the view mode (Reading, Live Preview, Source) for notes in Obsidian using folder rules, file patterns, or frontmatter.
Frontmatter Metadata Link Classes
10 months ago by Varvara Zmeeva / zmeeva.io
Enhanced internal links with automatic classnames based on frontmatter metadata.
Insert Arknights URL Banner
10 months ago by Rerurate_514
Obsidianのプラグイン、img_dwnldr_wikigg_ak_ktに保存されている画像を選択してbannersプロパティに簡単に設定できるプラグイン
Dataview (to) Properties
9 months ago by Mara-Li
Sync inline Dataview to properties (YAML frontmatter)
Template Folder
9 months ago by LucasOe
Obsidian plugin to move notes to a folder when applying a template.
Publish Note to Mowen Note
9 months ago by ziyou
This is a mowen plugin for Obsidian (https://obsidian.md)
Tag Group Manager
5 months ago by Stargazer-cc
Tag Group Manager is a plugin designed for Obsidian that helps manage tag groups and quickly insert tags.
Conditional Properties
4 months ago by Diego Eis
Automate frontmatter property updates in your Obsidian notes using simple conditional rules.
Connections
4 months ago by Eric Van Cleve
Colorful Note Background
3 months ago by andresgongora
Set note background based on file location or frontmatter metadata
Blueprint
3 months ago by François Vaux
Repeatable templates plugin for Obsidian
Frontmatter to HTML Attributes
2 months ago by Tarek Saier
Makes YAML frontmatter available as data-* attributes in HTML, enabling metadata based CSS styling.
Hide Traffic Lights
a month ago by Ben Phillips
Hides macOS traffic light buttons for a distraction-free experience. Hover over the top-left corner to reveal them.