Skip to main content
Settings
Search
Appearance
Theme Mode
About
Jekyll v3.10.0
Environment Production
Last Build
2026-04-29 13:38 UTC
Current Environment Production
Build Time Apr 29, 13:38
Jekyll v3.10.0
Build env (JEKYLL_ENV) production
Page Location
Page Info
Layout default
Collection docs
Path _docs/customization/index.md
URL /docs/customization/
Date 2026-04-29
Theme Skin
SVG Backgrounds
Layer Opacity
0.6
0.04
0.08

Customization

Customize the Zer0-Mistakes theme to match your brand and requirements.

Customization Areas

Area Location Description
Layouts _layouts/ Page templates and structure
Styles _sass/ CSS/SCSS customization
Navigation _data/navigation/ Menu and sidebar configuration
Components _includes/ Reusable HTML components

Quick Customizations

Site Identity

Update _config.yml:

title: "Your Site Title"
subtitle: "Your tagline"
description: "Site description for SEO"
author:
  name: "Your Name"
  email: "you@example.com"
  bio: "About the author"
logo: /assets/images/logo.png

Colors and Branding

Create or edit _sass/custom.scss:

// Override Bootstrap variables
$primary: #your-color;
$secondary: #your-color;

// Custom styles
body {
  font-family: 'Your Font', sans-serif;
}

Edit files in _data/navigation/:

# _data/navigation/main.yml
- title: "Home"
  url: /
- title: "Blog"
  url: /blog/
- title: "Docs"
  url: /docs/

Guides in This Section

  • Layouts — Create and customize page templates
  • Styles — CSS customization and theming
  • Navigation — Configure menus and sidebars

Layout Hierarchy

root.html          ← Base HTML structure
└── default.html   ← Main wrapper with navigation
    ├── home.html      ← Homepage layout
    ├── journals.html  ← Blog posts
    ├── collection.html ← Collection pages
    └── landing.html   ← Full-width landing pages

Override Theme Files

To override any theme file:

  1. Create the same file path in your site
  2. Jekyll uses your version instead of the theme’s

Example: Override the footer by creating _includes/core/footer.html.

Next Steps

See also

  • [[Bootstrap Integration]]
  • [[Features]]
  • [[Liquid]]
  • [[Jekyll]]