A space to discuss online store customization, theme development, and Liquid templating.
How can I reposition the menu to be in the middle without affecting the product pages.
I want to keep this as it is on the product pages!
website: moroccanplus.com
It looks like you header is being positioned over you nav bar with a transparent background.
You can try adding this to you "theme.liquid" file within your code editor. To get to your code editor, click on "Online Store" under "Sales Channel" in the side menu. Then, click the "..." next to your current theme and select "edit code".
From here, locate your "theme.liquid" file and open it. Locate the {% style %} tag, you can search for it with control + f ( windows) and cmd + f (mac).
once you've located the {% stye %} tag in the above image, paste the following lines directly below it.
.site-header { position: initial !important; }
Click save and reload your site.
Let me know if that was the result you are after.