I would like my navbar's list items to span the entire width of the page, but to be justified. I tried the second answer in this question by Morgen32: How to justify navbar-nav in Bootstrap 3
@media (min-width: 768px){
.navbar-nav {margin: 0 auto; display: table; table-layout: fixed; float:none; width:100%;}
.navbar-nav > li {display:table-cell; float:none; text-align:center;}
}
However the longer items go to two lines and it's not using the full width of the page either.
http://jsfiddle.net/xt7Laawd/2/
Thanks in advance for your help!
Edit: I edited the fiddle. It wasn't the correct one.