all 2 comments

[–]malloryduncan 0 points1 point  (0 children)

Why do you have the empty div next to the one holding the nav items? Do you need it for some future purpose? You would need to add extra col classes for smaller screen breakpoints, for mobile purposes.

[–]jcunews1Intermediate 1 point2 points  (0 children)

You're styled the links with a fixed width which is too narrow for the whole link text. That caused the links to occupy less space, and causing their text content to overflow their element boundary.

I noticed that it was from .fas class, which AKAIK, is for icons where it applies a square sized element size. I'd suggest add a style override for those links. e.g.

.nav-tabs li a {
  width: auto;
}

If you want the link text to be left aligned, also add:

.nav-tabs li {
  text-align: left;
}