How to remove title from size chart popup

Topic summary

A user needed to hide the page title from a size guide popup on their Shopify store (meteorea.com). A screenshot showed the unwanted title appearing in the popup modal.

Solution provided:

  • Navigate to Online Store → Theme → Edit code
  • Open theme.liquid file
  • Insert CSS code before the closing </body> tag:
.product-popup-modal__content-info h1.h2 {
  display: none !important;
}

The original poster confirmed this solution worked. However, another user later reported the same steps didn’t resolve the issue for them and requested video guidance.

Status: Partially resolved - solution worked for the original poster but may require troubleshooting for different theme configurations.

Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

My website is https://meteorea.com/ I want to hide page title from a popup what opens size guide

Hello @paulverseckas

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

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

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

Perfect! Thank you very much

hello, i am following the steps but the title is still showing. Can you guide me through a video tutorial?