Line of code on the bottom

Topic summary

A Shopify store is displaying a mysterious line of code at the bottom of their website. The code appears to be reversed/mirrored text that reads “Thanks in advance” and CSS styling when flipped.

Initial Solutions Attempted:

  • One user suggested searching for the code in the theme.liquid file
  • Another provided CSS code to hide it by adding .template-index.loaded styling to theme.css

Current Status:
The CSS fix only worked on the index/homepage. The code still appears on all other pages throughout the site.

Outstanding Issue:
The store owner is seeking a solution to remove this code from all remaining pages, not just the homepage. The root cause of the reversed text appearing across the site has not been identified.

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

There is a line of code showing up on the bottom of our website

.collection-header-sections .page-header h1 { display: none; }

How can I remove it.

dtsystems.com is our website

Thanks in advanced.

1 Like

Hey @BKDT

Try searching for that in your theme.liquid file and you might find it there, if you don’t then feel free to share the collaborator request code with me and I can help you out with that.

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello @BKDT

Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.

.template-index.loaded {
font-size: 0px !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

hello,
It worked on the index page, but it still shows up on all the other pages.
I might have forgotten to mention that it’s on all the pages.
Is there a solution for that?
thanks!