Re: Logo/text in header still showing in dawn theme

Solved

Logo/text in header still showing in dawn theme

sarat86
Tourist
8 0 1

Hello,

 

When I first put the site together I added some custom CSS I found on here to hide the title/logo in my header.

It works however everytime a new page loads it appears for a millisecond.

I wonder if anyone has a solution as to how I can avoid that.

Here is my site www.ekuaceramics.com

 

This is the CSS I added:

 

h1.header__heading {
display: none;
}
a.header__heading-link.link.link--text.focus-inset {
display: none;
}
.header__menu-item:hover span {
text-decoration: none !important;
}
details[open] > .header__menu-item,
.header__active-menu-item {
text-decoration: none !important;
}

 

Thank you

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
9193 1843 1875

This is an accepted solution.

Hi @sarat86 

Please try to add this code to theme.liquid file, after <head> and check if it solve your issue 

<style>
a.header__heading-link,
h1.header__heading { display: none !important; }
</style>

- Helpful? Like and Accept solution!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 3 (3)

BSSCommerce-TA
Shopify Partner
123 24 24

Hi, @sarat86. In which file did you add that CSS? Try adding it at the bottom of your "base.css" or "theme.css" file.

If it works please choose my answer as the solution. Thank you.

 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution.

SIMICART: Mobile App Builder |Ironwork Theme - Coming Soon | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency

Dan-From-Ryviu
Shopify Partner
9193 1843 1875

This is an accepted solution.

Hi @sarat86 

Please try to add this code to theme.liquid file, after <head> and check if it solve your issue 

<style>
a.header__heading-link,
h1.header__heading { display: none !important; }
</style>

- Helpful? Like and Accept solution!
- Ryviu - Reviews & QA app: Collect product reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Shopee, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image: Easy and fast to create Photo Gallery, Lookbook, Shop The Look.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.

sarat86
Tourist
8 0 1

Thank you! This seems to have worked!