In this post
One Page
Add this code to Page Header Code Injection and click Save
(If your site doesn’t support Code Injection, you can add code via Code Block)
<!-- Remove logo - One Page --> <style> .header-title-logo, .header-mobile-logo { display: none !important; } </style>
Desktop Only
Add this codes to CSS Custom Box and click Save.
/* Desktop Only */ @media screen and (min-width:768px) { .header-title-logo, .header-mobile-logo { display: none !important; }}
Mobile Only
Add this code to CSS Custom Box and click Save.
/* Mobile Only */ @media screen and (max-width:767px) { .header-title-logo, .header-mobile-logo { display: none !important; }}
Blog Page (list)
Add this code to CSS Custom Box and click Save.
/* Blog Page (list) */ [class*="type-blog"].view-list { .header-title-logo, .header-mobile-logo { display: none !important; }}
Blog Post
Add this code to CSS Custom Box and click Save.
/* Blog Post */ [class*="type-blog"].view-item { .header-title-logo, .header-mobile-logo { display: none !important; }}
Event List
Add this code to CSS Custom Box and click Save.
/* Event List */ [class*="type-event"].view-list { .header-title-logo, .header-mobile-logo { display: none !important; }}
Event Detail
Add this code to CSS Custom Box and click Save.
/* Event Detail */ [class*="type-events"].view-item { .header-title-logo, .header-mobile-logo { display: none !important; }}
Shop/Category
Add this code to CSS Custom Box and click Save.
/* Shop/Category */ [class*="type-products"].view-list { .header-title-logo, .header-mobile-logo { display: none !important; }}
Individual Product
Add this code to CSS Custom Box and click Save.
/* Individual Product */ [class*="type-products"].view-item { .header-title-logo, .header-mobile-logo { display: none !important; }}
Cart Page
Add this code to CSS Custom Box and click Save.
/* Cart Page */ body#cart { .header-title-logo, .header-mobile-logo { display: none !important; }}
Homepage Only
Add this code to CSS Custom Box and click Save.
/* Homepage Only */ body.homepage { .header-title-logo, .header-mobile-logo { display: none !important; }}
On Scroll Only
Add this code to CSS Custom Box and click Save.
/* On Scroll Only */ header#header.shrink { .header-title-logo, .header-mobile-logo { display: none !important; }}
Other Pages (exclude homepage)
Add this code to CSS Custom Box and click Save.
/* Other pages - exclude homepage */ body:not(.homepage) { .header-title-logo, .header-mobile-logo { display: none !important; }}
When Burger Menu is Open
Add this code to CSS Custom Box and click Save.
/* When burger menu is open */ body.header--menu-open { .header-title-logo, .header-mobile-logo { display: none !important; }}