Menu showing up when scrolling up

Every time I scroll up, the menu bar shows up behind the content. This also happens in mobile. How do I fix it?

Here is the website: https://bagsinthecitymanila.com/

Hi @tinee

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize
Step 2: From the left menu > Theme settings > Open Custom CSS
Step 3: Copy thebelow code and paste it there

.header__submenu {
z-index: 99!important;
}

1 Like

Hi @tinee

Edit your theme,

change ‘Sticky header’ to ‘Always’

1 Like

Hello @tinee ,

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. Locate Asset > base.css and paste the following code at the bottom of the file:
ul#HeaderMenu-MenuList-2 {
    z-index: 111 !important;
}

Let me know if you need further assistance!

1 Like