A user seeks to reposition the title and “Shop all” button on their Dawn theme’s mobile banner, moving them toward the bottom of the image while keeping the desktop version unchanged.
Solutions Provided:
Two CSS approaches were offered:
Solution 1: Add align-items: flex-end !important; to .banner__content within a mobile media query (max-width: 749px)
Solution 2: Adjust padding on .banner__box container using padding-top: 260px and padding-bottom: 0 for screens under 767px
Both solutions involve editing the theme’s CSS file (base.css, style.css, or theme.css) through the Shopify admin code editor.
Follow-up Question:
Another user asked how to move text to the top of the banner instead. The response suggested using align-items: flex-start !important; with the same CSS structure.
Status: Multiple working solutions provided; implementation requires basic CSS file editing in Shopify theme code.
Summarized with AI on October 31.
AI used: claude-sonnet-4-5-20250929.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width: 749px){
.banner__content {
align-items: flex-end !important;
}
}