How do I make an item in the navigation bar have a box around it

I’m wanting to put a navigation item inside a box to highlight it, in the screenshot below.

I’m using the IMPACT theme

Hi @cameronofoluwa ,

Go to Assets > theme.css and paste this at the bottom of the file:

@media screen and (min-width: 700px) {
  nav.header__link-list{
    align-items: center !important;
  }
  nav.header__link-list>ul > li:nth-child(4) {
    border: 2px solid #ff0000;
    padding: 15px;
  }
}

Hope it helps!