unfortunately, no results - I don’t think this is the wording to search for since I can’t identify it
Topic summary
Main issue: Keep the announcement bar and header (menu/logo) fixed at the top in the Shopify Enterprise theme; they were disappearing on scroll.
Key finding: A scroll-detection script applies the class “is-out,” and CSS tied to that class hides/collapses the navigation elements.
Troubleshooting steps: Searched theme.liquid and header-related files without results, then checked stylesheet files (main.css/base.css). The relevant CSS was found in main.css.
Fix implemented: Removed the rules targeting “.cc-header–sticky .header.is-out” and “.cc-header–sticky .header.is-out .main-menu__disclosure,” which were causing the header to hide and the menu to collapse on scroll. The code snippet provided was central to the solution.
Outcome: After deleting those CSS rules, the header remains visible (sticky) during scrolling. The issue is resolved with no further open questions.