Goal: Add a “Shop Now” button (and ideally header text) overlay to a homepage video using a Custom Liquid section in the Refresh theme.
Context: The poster initially shared an admin editor URL, then provided the live storefront URL. A helper requested the section be visible, then suggested an HTML wrapper and CSS to position the button over the video.
Proposed approach: Wrap the video in a parent container set to position: relative and center with flex. Place the button inside that container with position: absolute and a bottom offset so it overlays the video. CSS to be added in base.css; button class targeted (e.g., .ctaShopNow).
Final implementation: The poster used a div container (landingContainer) around the video and a link styled as a button (classes: ctaShopNow, btn, button) pointing to /collections/gift-boxes. CSS sets the container as relative flex-centered and the button as absolutely positioned with bottom: 80px and high z-index; the video is set to width: 100% and auto height.
Outcome: The button overlay now works as intended. The thread appears resolved for the button; adding header text was not confirmed. Images were shared to illustrate structure and expected result.