Unresponsive nav bar

I am currently working through the Technical Documentation Project and I am trying to create the fixed navbar that is required in the specification. When I add “position: fixed” to my navbar element the anchor tag links within said navbar are unresponsive. I have tried using z-index on the navbar element but nothing changes. I have provided a link to my CodePen below. Any help would be appreciated.

I’ve just finished this Barry so can definitely help. Sadly you didn’t end up posting your codepen. Post it and we’ll take a look.

It sounds like you need to add a media query.

@media only screen and (max-width: 360px) {
  /* Styling here */ 
}

Can’t be precise without seeing what you’ve already done.