How to fix a transparent header from moving in Fashe theme?

Hi,

I’ve managed to make my header transparent however I am having two issues.

  1. I don’t my header to move down the page as you scroll

  2. Is it possible to remove the line is my header appears completely transparent

Website: www.fueleduk.com

Thanks for your time.

1 Like

yes for this you need to add below link of the code in main.css file

.container-menu-header {
    box-shadow: none;
}

@Fueleduk yes for this you need to add below link of the code in main.css file

.container-menu-header {
    box-shadow: none;
}

@Fueleduk

sorry that issue

can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/main.css ->paste below code at the bottom of the file.
.container-menu-header {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
}