Subscription Signup to the left of the footer in Dawn Theme

Topic summary

A user is attempting to customize the Dawn theme footer by repositioning the newsletter subscription box to the left side and adding a logo at the bottom of the page.

Current Issue:

  • The newsletter signup box appears centered in the footer (shown in attached screenshots)
  • Standard CSS alignment code was suggested but only reduced the signup box size without changing its position
  • The theme customizer lacks a built-in image block option for adding a logo to the footer

Attempted Solution:
CSS targeting .footer__newsletter and .footer__content with flexbox properties was provided but proved ineffective for this specific implementation.

Status: The issue remains unresolved, with the user requesting alternative code solutions for repositioning the newsletter element.

Summarized with AI on October 30. AI used: claude-sonnet-4-5-20250929.

Hi, I wanted to put my subscription box to the left, but I cannot seem to find a code that works for me. Also how can I add my logo to the bottom of the page?

Thank you for your help.

Hi,

Hope this will help

At newsletter block check for an alignment or positioning option If there’s no built-in setting then add custom css

css example

.footer__newsletter {
  text-align: left;
  width: 50%; /* Adjust width if needed */
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

at footer section click “add block” and choose image> upload your logo and adjust

Unfortunaletly, the code does nothing for my footer, also I don’t have the option to add a picture. Is there any other code you can think of that would move the newsletter to the left/right? The only thing that it does, is make the newsletter signup smaller in size.

I appreciate the help!