I have a heading inside a navigation like below I am trying to align the Heading to the center of navigation.
<nav class="navbar navbar-default">
  <h1>My Heading</h1> 
</nav>
When I use the CSS like the below
.navbar{
  min-height: 70px;
  background-color: #e8e8e8;
  text-align: center;
}
it does not align the text inside the navbar to be center instead it aligns to left. I also tried adding CSS for h1. It doesnot work too. What am I missing?.