How can I shift my navigation menu and logo on mobile in the Dawn theme?

Show More

I am trying to move my Shopify navigation menu to the right side of the page by the search button and cart button , and move my logo to the left only on mobile for both, how do I do this? I am on dawn theme.

Hi,

Please share your store URL and if your store is password protected then also provide password too.

Thank you.

@Haleemahc
Hello,
Can You Please Share Your Store URL…
If your site its password protected so Can Please Share Store URL and Password

https://sonofdavid.store/collections/frontpage

it is not password protected

Hi @Haleemahc ,

Go to Assets > base.css and paste this at the bottom of the file:

@media screen and (max-width: 989px) {
	.header {
		grid-template-areas: "heading left-icon icons" !important;
		grid-template-columns: 2fr 1fr 1fr !important;
	}
	header-drawer {
		justify-self: end !important;
	}
	.header__heading-link {
		justify-self: start !important;
	}
}

Hope it helps!