How to make the tabs in the menu to go to the far left and far right?

Hello,
I was wondering how I can move the tabs such as the about us, donate, contact to the left and the search icon, profile icon, etc to the right.

My URL is https://hallyuapparel.com/

Thank you !

Hi @HallyuApparel

Try this one.

  1. From your Shopify admin dashboard, click on ā€œOnline Storeā€ and then ā€œThemesā€.
  2. Find the theme that you want to edit and click on ā€œActionsā€ and then ā€œEdit codeā€.
  3. In the ā€œAssetsā€ folder, click on ā€œbase.css, style.css or theme.cssā€ file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
header.header.header--middle-center.header--mobile-center {
    max-width: 100%;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

Thank you!

I check that your Menus (About Us, Blogs, Donate and Contact Us) already on the left side. And I think you want to make Profile icon to the right side.
If am right then please paste this code in base.css file

.header--middle-center .header__heading-link, .header--middle-center .header__heading{
transform: translate(155px, 0px);
}

Welcome! Would you mind hitting ā€˜like’ as well? Thanks!