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
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
Simple. Use the css position:fixed
rule. Use top:0
to fix it to the top.
header{
position:fixed;
top:0;
}