How can I reset my header menu to its default alignment?

toltano.com

A while ago i wanted to center align my header menu as it was a bit off center

So i have applied some code from recommendations here

However I want now for the header menu to be as it was giving me the ability to have it left aligned, as what’s needed just now

When I choose for the header menu to be aligned middle left it doesn’t actually move from centered alignment.. because of previous code

How can I correct this please and get it back to default?

Many thanks

@nvisibl1 add the below code to your theme’s base.css file.

@media screen and (min-width: 768px) {
	#shopify-section-sections--21581257605393__header .header--middle-left {
	    grid-template-columns: auto auto 1fr !important;
	    column-gap: 2rem !important;
	}
}
1 Like

Thank you so much !!