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>
Comments
0 comments
Please sign in to leave a comment.