Topic summary
A user seeks guidance on creating a brand banner in Shopify’s Dawn theme, sharing a screenshot of their desired outcome.
Three implementation approaches are suggested:
Option 1 - Using Built-in Sections:
- Add a new section via the theme editor’s “+” button
- Select “Image with text overlay” section
- Customize with brand logo, tagline, and styling through section settings
- Can be placed in homepage, header, or footer locations
Option 2 - Modifying Existing Elements:
- Navigate to an existing section in the theme editor
- Locate and edit specific elements (images, text blocks)
- Adjust content, alignment, fonts, colors to represent the brand
Option 3 - Custom CSS Solution:
- Access “Theme settings” → “Customize” tab
- Scroll to “Additional CSS” section
- Add custom CSS code for
.brand-bannerclass - Example properties include background image, positioning, padding, and color styling
The discussion remains open with no follow-up from the original poster on which solution was attempted or successful.
Option 1: Adding a brand banner section to an existing template: 3. In the theme editor, navigate to the section where you want to add the brand banner (e.g., homepage, header, or footer).
-
Click on the “+” button to add a new section.
-
In the “Add section” dialog, scroll down and look for the “Image with text overlay” section. This section is commonly used to create a brand banner.
-
Select the “Image with text overlay” section to add it to your chosen location.
-
Customize the section by adding your brand logo, tagline, and any other relevant information. You can modify the image, text, and styling options in the section settings.
Option 2: Customizing an existing section for a brand banner: 3. In the theme editor, navigate to the section you want to customize for the brand banner.
- Locate the specific element (e.g., image, text block) that you want to use for the brand banner.
- Edit the content and styling options of the element to represent your brand. You can typically modify the text, image, alignment, font, and colors.
Option 3: Using a custom code solution: 3. In the theme editor, navigate to the “Customize” tab.
-
Click on “Theme settings” at the bottom of the left sidebar.
-
Scroll down to the “Additional CSS” section.
-
Add custom CSS code to create your brand banner. For example:
Option 3:
Using a custom code solution: 3. In the theme editor, navigate to the “Customize” tab.- Click on “Theme settings” at the bottom of the left sidebar.
- Scroll down to the “Additional CSS” section.
- Add custom CSS code to create your brand banner. For example:
.brand-banner {
background-image: url('path/to/your/image.jpg');
background-size: cover;
background-position: center;
text-align: center;
padding: 20px;
color: #ffffff;
/* Add additional styles as desired */
}
