All Collections
Store
Site pages
Hiding the store logo (CSS)
Hiding the store logo (CSS)
Ed Boaden avatar
Written by Ed Boaden
Updated over a week ago

To hide the store logo, add the following code to the site custom CSS:

.logo { display: none; }

If you want to show the store name in place of a logo, add the following code to hide the logo and show the name.

.logo-img {
display: none;
}

.logo-img + .store-name {
display: block;
margin-left: 0;
}

If you only want to hide the logo on a single page, add the CSS code to a code module. You will need to include style tags to do this:

<style>

.logo { display: none; }

</style>
Did this answer your question?