Tried to get a sticky header onto my website using javascript, but doesn’t seem to be working.
Here is the html code and javascript related to this section:
JavaScript
x
19
19
1
<header>
2
<a href="#" class="logo">Food<span>.</span></a>
3
<ul class="navigation">
4
<li><a href="#banner">Home</a></li>
5
<li><a href="#about">About</a></li>
6
<li><a href="#menu">Menu</a></li>
7
<li><a href="#expert">Expert</a></li>
8
<li><a href="#testimonials">Testimonials</a></li>
9
<li><a href="#contact">Contact</a></li>
10
</ul>
11
</header>
12
13
<script type="text/javascript">
14
window.addEventListener('scroll', function () {
15
const header = document.querySelector('header');
16
header.classList.toggle("sticky", window.scrollY > 0);
17
});
18
</script>
19
Here is the CSS related to the sticky header:
JavaScript
1
14
14
1
header .sticky {
2
background: #fff;
3
padding: 10px 100px;
4
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
5
}
6
7
header .sticky .logo {
8
color: #111;
9
}
10
11
header .sticky .navigation li a {
12
color: #111;
13
}
14
Please help!
Advertisement
Answer
Step 1. Use header.sticky
instead of header .sticky
(remove space)
Step 2. Add the following style to header.sticky
JavaScript
1
4
1
position: -webkit-sticky; /* Safari */
2
position: sticky;
3
top: 0;
4