Help on centering current Logo & position the Navigation bar at the very top (above logo)

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:

  1. Access your Shopify admin page. Select Online Store => Themes => Edit code

  1. In the code folder, find the styles.css file and add the following code to the end of the file:
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