Hi there
Please would you assist me design my header? I want Logo left align, search bar in the middle (long), and cart/sign in to be right align. The theme is Dawn. This the URL of my site https://signatureluxuryclothes.com/
I would so much appreciate it so much if you help me out. I want mine to look exactly like the image below and the site is https://theluxurycloset.com/
1 Like
Hi MrsMarkus,
Absolutely! You can definitely achieve that layout in the Dawn theme with a bit of customization. Since you’re aiming for a header similar to TheLuxuryCloset—with the logo on the left, search bar centered and wide, and cart/sign-in on the right—here’s a general approach:
Step 1: Edit Your Header Layout
- Go to Online Store > Themes > Edit code.
- Open
header.liquid (or header.liquid in sections folder).
- Inside the main header
<div>, you’ll want to structure your layout using flexbox. Example:
{{ 'logo' | asset_url | img_tag }}
{% section 'search-bar' %}
{% render 'header-icons' %}
### Step 2: Adjust CSS
In your base.css or theme.css file, you might want to fine-tune it:
.custom-header-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 10px 20px;
}
.header__search input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
}
.custom-header-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 10px 20px;
}
.header__search input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
}
Optional: Use Shopify’s Customizer
If you’re not comfortable editing code, you can install a free Shopify app like “Search & Discovery” to manage search behavior and consider using a Shopify developer or Shopify Partner to help replicate the exact design of TheLuxuryCloset.
Your site is already looking beautiful—this layout upgrade will make it even more polished!
Let me know if you want me to walk you through the code live or share a sample file.