Header Menu & Contact Form Button (Dawn Theme)

Hi, is there a way to make the header menu limit to one row no matter how much the window is resized? Currently, it’s like this:

And I’m looking it to be more like this:

My second question is also how to change the color of the contact form send button so it’s more visible. Currently:

To a button like this:

The website is https://thirstyrhino.myshopify.com/

and password is skeipe

Thank you in advance!

Hi @thirstyrhino ,

  • Header: Go to Assets > base.css and paste this at the bottom of the file:
.header.page-width{
	max-width: 100% !important;
}
  • Button: Go to Assets > base.css and paste this at the bottom of the file:
form#ContactForm button{
	background: rgb(var(--color-foreground)) !important;
    color: #fff !important;
}

Hope it helps!

They both helped! Thank you!