I would like to center the current Logo & position the Navigation bar at the very top (above logo) and search bar centered under logo In the “Charge” Shopify Theme.
Your help would be greatly appreciated!
I would like to center the current Logo & position the Navigation bar at the very top (above logo) and search bar centered under logo In the “Charge” Shopify Theme.
Your help would be greatly appreciated!
Hi @NeginA ,
Hi, to do that, follow these instructions:
header.header {
display: flex;
flex-direction: column;
padding-bottom: 20px;
}
header nav.header__inline-menu {
order: -1;
}
header .header__icons {
width: 100%;
}
header .header__heading {
margin: 10px;
}
Save the file and the result will look like this:
Hope it helps @NeginA
Thank you so much!! @BSS-Commerce