Header style

Topic summary

A user seeks help styling their header on the Dawn theme to match a reference design. The main issue is text positioning on the left and right sides of the header, which appears too close to the edges and nearly cropped.

Current Status:

  • Store using Dawn theme (womber.fr)
  • Reference image provided showing desired header layout
  • Initial responses suggested the current design already matches the reference

Solution Provided:
A CSS code snippet was offered to increase horizontal spacing:

@media screen and (min-width: 990px) {
    .header:not(.drawer-menu).page-width {
        padding-inline: 30px !important;
    }
}

This adds padding to better distribute text across the header width, preventing the cropped appearance. A result screenshot demonstrates the improved spacing.

Resolution: The discussion appears resolved with a working CSS solution, though no confirmation from the original poster yet.

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

Hello,
I want my header to look like this one, can you help me with some code please ?
I attached below a photo so you can check the design:

I’m using dawn theme and my store is womber.fr Password: PROPAGANDAAA

Thanks you very much

1 Like

Hi I think I can help with that. If you’re still having issues, feel free to share more details.

Hi @PAUL8

I see it’s same with your reference so what do you want to change?

1 Like

Hello, it’s not exactly the same because on the right and left, my text is at the end of the header, almost cropped, whereas in the photo of my example it’s better distributed.

if only that, we can increase the space horizonal by this CSS code:

@media screen and (min-width: 990px) {
    .header:not(.drawer-menu).page-width {
        padding-inline: 30px !important;
   }
}

the result

1 Like