random line on my product page?

Topic summary

A user encountered an unwanted blue line appearing on their Shopify product page and requested help removing it.

Solutions Provided:

Multiple community members offered CSS-based fixes:

  • Primary solution: Add custom CSS targeting #product-grid ul with margin-top: unset !important;
  • Implementation methods: Contributors suggested three approaches:
    1. Insert code in theme.liquid file before the </body> tag
    2. Add CSS through the theme customizer’s Custom CSS section (Online Store > Themes > Customize)
    3. Direct CSS injection via theme code editor

Additional Context:

One respondent questioned whether the issue involved a gradient background color on the product detail page (PDP) rather than a simple line, requesting clarification.

All solutions target the same CSS property to eliminate unwanted top margin spacing. Screenshots were shared to illustrate both the problem and proposed fixes.

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

Can someone please help me remove this extra blue line that is on the page.
URL: Hygiadental.com

pw: melek

Hey @Anonymous

Can you share a screenshot for reference of what you’re exactly talking about?

Best Regards,

Moeed

Hello @Anonymous

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

#shopify-section-template--17256407859300__main-collection-product-grid ul#product-grid { margin-top: unset !important; }

Was my reply helpful? Click Like to let me know!

Was your question answered? Mark it as an Accepted Solution.

Hey @Anonymous

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 help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @Anonymous

Please add this code to Custom CSS in Online Store > Themes > Customize > Themes settings to solve the issue.

#product-grid { margin-top: 0px !important; }

@Anonymous

Do you mean this gradient background color on PDP?

Or somethine else to remove?