How can I make the announcement bar transparent?

Topic summary

A user seeks help making their announcement bar transparent on a Shopify store (Nexwatches).

Key Points:

  • The site currently has a white page background, which would show through a transparent announcement bar
  • A solution provider warns that making the bar transparent may cause visibility issues: the header could hide the announcement bar on hover
  • Proposed Solution: Add custom CSS code to the theme.scss file:
    #section-announcement {
      background: transparent !important;
      color: #fff !important;
      position: absolute;
      width: 100%;
    }
    

Status: The discussion provides a CSS workaround with caveats about potential design conflicts. Implementation details shared but concerns about header overlap remain unresolved.

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

Hello!

Is there anyone here that know how i can make the annoucement bar transparant?

Thank you!

@Rubberduck - can you please share your site link? it needs css

1 Like

Hello!

The website link: Nexwatches.no

@Rubberduck - your age background is white, so it will still show white only

How do i make it transparant?

@Rubberduck - you can make like 1st screenshot , but I do not recommend it as on hover, header will hide announcement bar

How do i make it like the first picture?

@Rubberduck - please add the given css to the very end of your theme.scss file and check

#section-announcement {
    background: transparent !important;    color: #fff !important;    position: absolute;    width: 100%;
}