Portfolio challenge - Bootstrap 4

Hello everyone :slight_smile:
Let me say at first that I am completely in love with the journey that FCC is providing (am doing Treehouse as well). However I have come across a slight issue:

When doing the portfolio page, I cannot for the life of me put the nav bar to display inline. It keeps formatting into the links being above each other. I read through the documentation on Bootstrap 4, as well as followed step by step a YouTube tutorial. However no luck.
I reverted than to using Bootstrap 3.3.7 which I am more familiar with, and got the nav bar to work the very first time.
Has anyone else encountered a similar issue with Bootstrap 4, or am I just stupid :smiley:

Many thanks,
Thomas

Yes there is issue with bootstrap 4, they have changed/modified multiple tags

hi @ThomasMartinUK, not sure what you mean…

I cannot for the life of me put the nav bar to display inline

well, bars are supposed to span an entire row, neh?

It keeps formatting into the links being above each other

i assume you’re pertaining to its mobile view

.navbar-nav {
  display: flex; // disable this and you'll be able to make the links display inline
}
.navbar-nav {
  display: inline-block;
}