0

I'm trying to get the nav bar link to align centrally with the nav brand

here is my code so far

http://codepen.io/anon/pen/pivwh

for some reason the contact is lower and I can't get the links to align to the right.

Thanks.

4

2 回答 2

0

Try this..

.navbar-nav {
  margin-top: 60px;
  font-size: 24px;
  text-transform: uppercase;
}

http://codepen.io/anon/pen/GAhwz

于 2013-11-12T19:51:37.880 回答
0

Is this what you're looking for?

.nav {
  float:right;
}

.nav li a{
  line-height: 99px;
}

.nav li {
  font-size: 24px;
  text-transform: uppercase;
}

http://codepen.io/anon/pen/FtyCg

于 2013-11-12T19:57:28.197 回答