(Dawn) Remove Brand Name Above Product Titles

Hi,

I’m using Dawn theme & I would like to edit the source code to remove my brand name above the product title of my product page.

Thanks for your help

Alex

1 Like

Hi @Alex087

Would you mind to share your Store URL website? with password if its protected. Thanks!

HI Made4

Edit is to be done on my product page

Thanx!

1 Like

Thank you, try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
#ProductInfo-template--16920898765078__main > p:nth-child(1) > font > font {
    display: none;
}
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hi @Alex087 ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

  1. Go to Online Store → Theme → Edit code
  2. Open your theme.liquid file
  3. Paste below code before :

Best reagrds,

Anthony

1 Like

This is not working

1 Like

Thanx Anthony this is working, but the brand name appears during the charging of the page & then disappears… it’s not smooth

Try this one again. Replace the code.

#ProductInfo-template--16920898765078__main > p:nth-child(1) > font > font {
    display: none !important;
}

And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Sorry about that, you can add more this code below to theme.liquid


1 Like

Thanx Made4 this is working but the brand name appears during the loading of the page…

1 Like

The brand name still appears shortly while page loading, can’t we remove this section instead of hiding?

Thanx!

Okay try this other code then.

#ProductInfo-template--16920898765078__main > p:nth-child(1) > font > font {
    visibility: hidden !important;

}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Yes, you can try another way below:

Step1: Go to Online Store → Themes → Customize

Step 2: On the top of the theme editor, click the dropdown button and select Products > Default products.

Step 3: Follow my screenshot below

1 Like

Thanx Anthony ?‍ :male_sign: