-1

I am trying to create a static header that keeps my search bar, mini cart, and header picture fixed at the top while scrolling.

Where can I locate the CSS/HTML properties to edit this?

The website is nkdscty.com for reference.

Thank you

1 Answers1

0

Simple. Use the css position:fixed rule. Use top:0 to fix it to the top.

header{
  position:fixed;
  top:0;
}
ggdx
  • 3,024
  • 4
  • 32
  • 48