Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Join the community
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Ribbon Divider

andrewmcgiveryandrewmcgivery7k downloads

Add dividers to the ribbon to space out your icons.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates9

Obsidian Ribbon Divider

A plugin for Obsidian.MD that allows you to add dividers to the ribbon to space out your icons.

A screenshot showing dividers on the ribbon interface of Obsidian

How to Install

Plugin can be installed from the official plugin list.

Install Ribbon Divider

How to Use

Dividers can be added and removed via the settings screen. Once they are added, you can drag them directly in the ribbon to where you want them just like an icon.

Settings screens howing where you can add and remove dividers

Customization

To customize the appearance of the dividers, you can utilize CSS to target the element.

/* Example: Change spacing around diver */
.side-dock-actions .side-dock-ribbon-action.ribbon-divider {
    padding: 8px 0;
}

/* Example: Change width of divider */
.side-dock-actions .side-dock-ribbon-action.ribbon-divider {
    width: 50%;
}

/* Example: Change color of divider */
.side-dock-actions .side-dock-ribbon-action.ribbon-divider &:before {
    background-color: #ff0000;
}

If you want to target a specific divider, each divider has a class added that incldues it's unique id (found in settings).

For example, to target a divider with the id 4714cc30-fb33-4da8-857a-a5d6478c9f9a:

/* Example: Change spacing around a specific diver */
.side-dock-actions
    .side-dock-ribbon-action.ribbon-divider.ribbon-divider-4714cc30-fb33-4da8-857a-a5d6478c9f9a {
    padding: 8px 0;
}

Dealing with Obsidian's Icon Order Bug

Unfortunately Obsidian comes with a ribbon icon-order bug where you may have noticed that plugins don't keep the order you arranged them within the ribbon when disabling/re-enabling those plugins (sometimes even when updating them) therefore making the dividers show up in the wrong places as well.

If you find yourself in situations where you have to toggle plugins or if you experience icon ordering issues in the ribbon, then below you'll find a workaround using CSS snippets:

  1. Make note of the ribbon icons' tooltips because you have to copy the exact tooltip text inside the CSS snippet to be able to identify & order them as you wish
  2. Create a CSS Snippet and first add the following CSS line to make all new plugin icons show up last after all your current icons:
div.clickable-icon { order: 99; }
  1. Think of how many groups of icons you wish to separate with dividers then add that many dividers in the Divider settings, then start creating your first group of icons in the CSS snippet as below:
div[aria-label="Open graph view"] { order: 1; }
div[aria-label="Create new canvas"] { order: 2; }
  1. Add your first divider as follows (I placed it "9th" to make room for future icons in this first group):
.ribbon-divider { order: 9 !important; }
  1. Create another group of icons like in step 3, but for each subsequent divider added you will have to use the CSS + sibling selector (this is because CSS doesn't have any "nth-class" selector to target dividers specifically):
/* second divider */
.ribbon-divider + .ribbon-divider { order: 19 !important; }

/* third divider */
.ribbon-divider + .ribbon-divider + .ribbon-divider { order: 29 !important; }

/* and so on */
  1. Finally, your CSS snippet should look similar to the below one:
/* make sure new icons show up after all current icons */
div.clickable-icon { order: 99; }

/* this plugin changes tooltip when it's clicked, hence the same order '1' */
div[aria-label="Hide hidden folders again"] { order: 1; }
div[aria-label="Show hidden folders"] { order: 1; }
.ribbon-divider { order: 9 !important; }

/* second group of icons */
div[aria-label="Open graph view"] { order: 10; }
div[aria-label="Create new canvas"] { order: 11; }
div[aria-label="Create new drawing"] { order: 12; }
.ribbon-divider + .ribbon-divider { order: 19 !important; }

/* third group */
div[aria-label="Insert template"] { order: 20; }
div[aria-label="Templater"] { order: 21; }
div[aria-label="Open projects"] { order: 22; }
.ribbon-divider + .ribbon-divider + .ribbon-divider { order: 29 !important; }

/* fourth group */
div[aria-label="New encrypted note"] { order: 30; }
div[aria-label="Convert to or from an Encrypted note"] { order: 31; }
div[aria-label="Run local backup"] { order: 32; }
div[aria-label="Open Notion"] { order: 33; }
div[aria-label="Open Todoist"] { order: 34; }
.ribbon-divider + .ribbon-divider + .ribbon-divider + .ribbon-divider { order: 39 !important; }

Reporting Issues

If you run into any issues with this plugin, please open an issue and incude as much detail as possible, including screenshots.

Leave a Tip

68%
HealthFair
ReviewSatisfactory
About
Add draggable dividers to the Obsidian ribbon to space and group icons. Customize divider appearance with CSS and target individual dividers using their unique class IDs.
SidebarAppearanceCSS
Details
Current version
1.1.1
Last updated
2 years ago
Created
2 years ago
Updates
9 releases
Downloads
7k
Compatible with
Obsidian 0.15.0+
License
MIT
Report bugRequest featureReport plugin
Sponsor
Buy Me a Coffee
Author
andrewmcgiveryandrewmcgivery
github.com/andrewmcgivery
GitHubandrewmcgivery
  1. Community
  2. Plugins
  3. Sidebar
  4. Ribbon Divider

Related plugins

Style Settings

Adjust theme, plugin, and snippet CSS variables.

Lapel

Show the heading levels in the gutter of the editor.

Contextual Typography

Add a data-tag-name attribute to all top-level divs in preview mode containing the child's tag name, allowing contextual typography styling.

Focus Mode

Add a toggle to hide interface elements so you can focus on your note.

Rainbow-Colored Sidebar

Automatically color your sidebar like a rainbow. No configuration needed.

Color Palette

Create and insert color palettes into your notes.

Show Whitespace

CSS styles and CM6 extensions to highlight whitespace in Source and Live Preview modes.

Linkify

Convert matching text into links.

Minimal Theme Settings

Control the colors and fonts in Minimal Theme.

Hider

Hide interface elements such as tooltips, status bar, titlebar, and more.