In this post
- remove logo on desktop only
- remove logo on mobile only
- remove logo on all pages
- remove logo on one page
- remove logo link (all pages)
- remove logo link (one page)
These code for 7.1 version. If you use 7.0 or 5.0, you can post site url in comment, I will give new code
#1. Remove Logo on All devices
You can use this code to Custom CSS box
a#site-title, header#header img {
display: none !important;
}
#2. Remove Logo on Desktop Only
Use this code to Custom CSS
.header-display-desktop {
a#site-title, header#header img {
display: none !important;
}
}
#3. Remove Logo on Mobile only
Use this code to Custom CSS box
.header-display-mobile {
a#site-title, header#header img {
display: none !important;
}
}
#4. Remove Logo on One Page
If you use Business Plan/higher, add this code to Page Settings > Advanced > Code Injection
<style>
a#site-title, header#header img {
display: none !important;
}
</style>
If you use Personal/Basic Plan > edit that page > Add a Code Block (anywhere on page) > Paste this code
<style>
a#site-title, header#header img {
display: none !important;
}
</style>
#5. Remove Logo on One Page - Desktop Only
If Business Plan/higher, add this to Page Settings > Advanced > Code Injection
<style>
.header-display-desktop a#site-title, .header-display-desktop img {
display: none !important;
}
</style>
If Personal/Basic Plan > edit page > Add a Code Block (anywhere on page) > paste this code
<style>
.header-display-desktop a#site-title, .header-display-desktop img {
display: none !important;
}
</style>
#6. Remove Logo on One Page - Mobile Only
If Business Plan/higher, add this to Page Settings > Advanced > Code Injection
<style>
.header-display-mobile a#site-title, .header-display-mobile img {
display: none !important;
}
</style>
If Personal/Basic Plan > edit page > Add a Code Block (anywhere on page) > paste this code
<style>
.header-display-mobile a#site-title, .header-display-mobile img {
display: none !important;
}
</style>
#7. Remove Logo Link (All Pages)
Use this code to Custom CSS
a#site-title, .header-title a {
pointer-events: none;
}
#8. Remove Logo Link (One Page)
If Business Plan/Higher, add code to Page Settings > Advanced > Code Injection
<style>
a#site-title, .header-title a {
pointer-events: none;
}
</style>
If Personal/Basic Plan, edit page > Add a Code Block > Paste the code
<style>
a#site-title, .header-title a {
pointer-events: none;
}
</style>
#9. Remove Logo on Cart Page
Use this code to Custom CSS box
body#cart header#header img {
display: none !important;
}