Changing the Banners
How to swap the rotating banners on Time Garden’s daily, weekly, monthly, quarterly, and yearly notes.
The rotating banner at the top of every Time Garden note is one of the most loved (and most asked-about) parts of the system. This page covers how to swap them, add your own, and fine-tune their placement.
Where Banners Live
All banner images are stored in:
06 Templates/Images/
├── Daily Notes/ ← One per weekday
├── Weekly Notes/ ← Rotates every 4 weeks
├── Monthly Notes/ ← One per month
├── Quarterly Notes/ ← One per quarter
├── Yearly Notes/ ← One per yearEach folder contains image (or video) files matched by name.
How A Banner Gets Picked
Time Garden's banner system is filename-driven. When a daily note is created, its template runs a small piece of logic:
"For a Monday, look in
06 Templates/Images/Daily Notes/for a file calledMondayBanner.gif. If not there, tryMondayBanner.jpg. Then.jpeg. Then.png. Then.webp. Use the first one found."
So to swap a Monday banner:
- Drop a new image into
06 Templates/Images/Daily Notes/ - Name it
MondayBanner.gif(or.jpg,.png,.webp) - Delete the existing
MondayBanner.<old-extension>file - New daily Mondays now use your image
The Banners-Per-Period Cheat Sheet
| Period | Filename Pattern |
|---|---|
| Daily | MondayBanner.gif, TuesdayBanner.gif, … SundayBanner.gif |
| Weekly | WeeklyBanner1.gif, WeeklyBanner2.gif, WeeklyBanner3.gif, WeeklyBanner4.gif (rotates) |
| Monthly | JanuaryBanner.gif, FebruaryBanner.gif, … |
| Quarterly | Q1Banner.gif, Q2Banner.gif, Q3Banner.gif, Q4Banner.gif |
| Yearly | YearBanner.gif (or year-specific files if you've customized the template) |
(Exact filenames may vary slightly between Time Garden versions — check what's in your Images folders for the source of truth.)
Existing Notes Don't Auto-Update
Banner config is baked in at note creation.
When a daily note is first created, the path to its banner image is written into the note's frontmatter. Swapping the underlying file will change what shows up on already-created notes (because the path stays the same and just points to your new file). But if you change the rule for which file gets picked (e.g., editing the Daily Banner Config template), only newly-created notes pick that up.
So the easy path: swap files, keep filenames the same.
Adding A Personal Banner For The Welcome Dashboard
The Welcome Dashboard's banner is set in its frontmatter:
banner:
- - DashboardBanner.gif
banner-y, y: 10
banner-x, x: 30
banner-height: 400To change it:
- Drop your new image into
06 Templates/Images/(or any folder you like) - Edit the
banner:line of00 Dashboard/Welcome.mdto point to it - Save
Same approach for any individual note — you can override the rotating banner by editing that note's frontmatter directly.
Tuning Banner Positioning
Each note's frontmatter has these keys:
banner-y: 10 # vertical alignment (0 = top, 50 = center, 100 = bottom)
banner-x: 30 # horizontal alignment
content-start: 200 # how far down the page content starts
banner-display: cover # cover | contain | repeat
banner-repeat: true
banner-height: 400 # in pixels
banner-fade: -75 # how strong the fade-to-page is
banner-radius: 25 # corner roundnessTweak any of these to taste. Different banners need different banner-y values to look right (a face shouldn't get clipped at the eyes).
The Daily template ships with per-weekday banner-y values already tuned, because Monday's image needs different positioning than Saturday's.
Using Videos / GIFs / MP4s As Banners
Time Garden supports animated banners. The Welcome Dashboard ships with one out of the box.
To use a video file:
- Drop it into
06 Templates/Images/ - Reference it the same way —
banner: - - YourVideo.mp4 - The Pexels Banner plugin renders it inline, autoplay, muted, looping
Videos can be huge — keep them under 5–10 MB if you can, and prefer formats like .mp4 over .mov.
Where To Find Free Banner Images
- Pexels (the plugin's namesake — free, beautiful, no attribution needed)
- Unsplash
- Pixabay
- Giphy for animated banners
Search for aesthetic, ambient, seasonal, or mood-specific keywords for results that fit Time Garden's vibe.
Up Next
- The Welcome Dashboard — the most-customized banner spot
- Adjusting Templates Yourself — modifying the banner-selection logic
- Understanding the CSS-Snippets — controlling how banners fade into the page