Ncmaz - Blog, News, Magazine Full Site Editing WordPress theme
Live DemoBuy theme
  • Welcome
  • Getting Started
    • FSE - Quickstart
    • WordPress
  • Basics
    • Theme Installation
    • Theme Updates
    • Demo
    • Pages
    • Posts
    • Block Editor
    • Customization Block Editor
    • Site Editor
    • Site Editor
    • Sidebars
    • Woocommerce
    • Localization
    • Accessibility
    • Add Custom CSS
    • Dark/Light Logo
    • Plugins
    • Sources and References
    • Changelog
Powered by GitBook
On this page

Was this helpful?

  1. Basics

Dark/Light Logo

PreviousAdd Custom CSSNextPlugins

Last updated 1 month ago

Was this helpful?

In case you need to use 2 separate logos for 2 Light/Dark modes of the website, please check the instructions below:

1, Add a Image block (logo in dark mode) next to the main logo and add class to this image as "dark-logo" 👇

2, Add the following custom CSS code to the "Additional CSS" section 👇 - (check out this guide to learn how to add Additional CSS )

// Additional CSS

.dark header .wp-block-site-logo {
    display: none;
}
.logo-dark {
    display: none;
}
.dark header .logo-dark {
    display: block;
}

Add Custom CSS