Dark/Light Logo

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

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

Add Custom CSS
// Additional CSS

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

Last updated

Was this helpful?