How can I remove a hidden banner coded into my website background?

Topic summary

Hidden promotional banner injected between the header and first section appeared on all product pages and couldn’t be removed via Theme Customization. It linked to other e-stores, so the goal was to hide/remove it.

Proposed fixes:

  • Edit code: Open Online Store → Themes → Edit code → theme.liquid and insert a snippet before to remove/suppress the banner (exact code not shown in the transcript).
  • CSS override: In Assets (base.css/style.css/theme.css), add:
    #adeagle-topbar-placeholder { display: none !important; }
    This targets the banner’s element and hides it sitewide.

Outcome:

  • Both methods were tested and confirmed to work by the site owner.

Status: Resolved; no remaining open questions.

Summarized with AI on January 21. AI used: gpt-5.

hi!
on my webpage https://deviceforyou.com/ when you choose some product, on all pages there is a banner which is written in a code, but i cant find it, can someone could help remove it, because they offer other estores production and navigate to them

banner is hiden between header and first option in Theme Customization, so its not possible to hide it

1 Like

Hi @roliks999 ,

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 regards,

Anthony

Hi @roliks999

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:
#adeagle-topbar-placeholder {
    display: none !important;
}
  • And Save.

i hope it help.

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

thanks, checked this and it works

thanks, also tryed this method and it worked too