Dawn 11.0.0 - Rearrange header

Solved
yoomzy
Shopify Partner
11 0 1

IMG_6479.jpeg

IMG_6481.jpeg

Hi guys! I’ve attached screenshots showing how I’d like to rearrange my header for the dawn theme.

Basically, the logo should be positioned to the left, and the hamburger menu towards the right end. 

 

Thank you in advance, any help is appreciated. 🙂

 

My store url: https://hjskr1-testing.myshopify.com/

 

password: enter

 

Accepted Solution (1)
Dan-From-Ryviu
Shopify Partner
5570 1021 1053

This is an accepted solution.

Hi @yoomzy 

Go to your Online store > Themes > Edit code > open base.css file, add this code at the bottom 

@media (max-width: 767px) {
.header { 
    grid-template-columns: 2fr 2fr 1fr !important; 
}
header-drawer {
    grid-area: icons !important;
    justify-self: end !important;
}
.header__heading, .header__heading-link {
    grid-area: left-icons !important;
    justify-self: start !important;
}
.header__icons {
    grid-area: heading !important;
    justify-self: end !important;
    padding-right: 0 !important;
}
}

Screenshot_5.jpg

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

View solution in original post

Replies 5 (5)
Dan-From-Ryviu
Shopify Partner
5570 1021 1053

This is an accepted solution.

Hi @yoomzy 

Go to your Online store > Themes > Edit code > open base.css file, add this code at the bottom 

@media (max-width: 767px) {
.header { 
    grid-template-columns: 2fr 2fr 1fr !important; 
}
header-drawer {
    grid-area: icons !important;
    justify-self: end !important;
}
.header__heading, .header__heading-link {
    grid-area: left-icons !important;
    justify-self: start !important;
}
.header__icons {
    grid-area: heading !important;
    justify-self: end !important;
    padding-right: 0 !important;
}
}

Screenshot_5.jpg

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

yoomzy
Shopify Partner
11 0 1

Hey, this worked perfectly. You're awesome! 😀 Do you know how to change image banner buttons into underlined buttons too? (like the screenshot below) IMG_6483.jpgIMG_6482.jpg

Dan-From-Ryviu
Shopify Partner
5570 1021 1053

Please update code to this 

@media (max-width: 767px) {
.header { 
    grid-template-columns: 2fr 2fr 1fr !important; 
}
header-drawer {
    grid-area: icons !important;
    justify-self: end !important;
}
.header__heading, .header__heading-link {
    grid-area: left-icons !important;
    justify-self: start !important;
}
.header__icons {
    grid-area: heading !important;
    justify-self: end !important;
    padding-right: 0 !important;
}
.banner__buttons .button {
    padding: 0px !important;
    min-width: fit-content !important;
    min-height: auto !important;
    text-transform: uppercase !important;
}  
.banner__buttons .button--secondary:after {
    box-shadow: unset !important;
    border-bottom: 2px solid #fff;
    margin-bottom: -4px;   
} 
}

Screenshot_7.jpg

 

 

 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now

yoomzy
Shopify Partner
11 0 1

Thanks a bunch, man. I really appreciate it! :))

Dan-From-Ryviu
Shopify Partner
5570 1021 1053

Very welcome, @yoomzy 

- Helpful? Like and Accept a solution. - Donate: Buy coffee - or Paypal me ❤️
- Ryviu - Product Reviews app, collect consumer photo reviews, import reviews from AliExpress, Amazon, Etsy, Shoppe and Walmart and CSV.
- Lookfy app: Create Image Lookbook, Photo Gallery with product hotspots
- Enjoy 3 months of Shopify for $1/month. Sign up now