Dawn theme remove popup modal title - urgent

Topic summary

A user needs to remove the product title from popup modals on their Dawn theme product pages while keeping other modal elements intact.

Problem Details:

  • The title appears in image popup modals when customers click product images
  • User wants to hide only the title text, not the entire modal
  • Affects all product page views on the site

Proposed Solutions:

Three community members offered CSS-based fixes:

  1. JavaScript approach: Add code to theme.liquid file above the </body> tag to target and hide the modal title

  2. CSS method #1: Add custom CSS to hide .product-popup-modal__content-info .h2 and adjust padding

  3. CSS method #2: Add code to base.css file targeting .product-popup-modal__content-info h1 with display: none !important;

All three solutions include screenshots showing successful removal of the modal title. One respondent suggested switching to a premium theme instead.

Status: Multiple working solutions provided, awaiting user confirmation of which approach was implemented.

Summarized with AI on October 27. AI used: claude-sonnet-4-5-20250929.

I’m using Dawn theme for my website’s product page in that I need to remove the popup modal title alone on all the views. I’ll attach the reference image -

website: https://the-rugged.com/products/sleek-straight-fit-jeans-copy

password: rugged

I want like this.

1 Like

Hey @Sivadarshan

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT

If I managed to solve your problem then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi @Sivadarshan

let try to add this custom css code:

.product-popup-modal__content {
  padding-inline: 1.5rem;
}
.product-popup-modal__content-info .h2{
  display: none;
}

the result:

Hi @Sivadarshan

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.product-popup-modal__content-info h1 {
    display: none !important;
}

Result

Best,

DaisyVo

Why not make use of the premium theme instead, that helps with more features included @Sivadarshan