Footer -> Positioning of "Subscribe Email" to within the invincible block

Topic summary

A user is seeking help with repositioning the “Subscribe Email” element within the footer section of their store.

Current Issue:

  • The email subscription block needs to be moved to a specific position within what they call the “invincible block” in the footer
  • An image is included showing the current footer layout

Technical Details:

  • Custom CSS code has been provided that attempts to create the block positioning
  • The code includes properties for position (absolute/relative), dimensions, and media queries for responsive design at minimum width 750px
  • The CSS appears to target .footer-block--newsletter and .footer__content-top classes

Status:
The discussion remains open with no responses yet. The user has shared their attempted solution but appears to need guidance on proper implementation or troubleshooting the positioning issue.

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

As title says.

Code that I used for making it a block. /section-footer.css

@media screen and (min-width: 750px) {> .footer-block–newsletter {> position: absolute;> right: 0;> top: 0;> }> .footer__content-top {> position: relative;> }> }