Portfolio Problem Pt 2

I am nearly complete with my portfolio project (and my html/css section of FCC), however I am finding an issue with my project saying that my nav-bar must always be at the top of the viewport. It is…so I’m not sure what’s going on. I’ll link to my portfolio, but keep in mind that it hasn’t been decorated yet. It’s mostly just content right now. Also feel free to give me any general advice if you glimpse at it.

You are applying position:fixed property to ul having id = “nav-bar”. It should be applied to its parent which is nav id="navbar"

#navbar{
  position: fixed;
  top: 0;
}
#nav-bar{
list-style-type: none;
  
  right: 0;
  margin: 5px 5px 0px 0px;
  display: flex;
  
}
1 Like

I can’t believe I named them something so similar. Thank you very much for pointing that out.

If solved…“Like” and “Mark the post as solution”.