Bootstrap Navbar

Reduce height of bootstrap navbar

by harsh dand

HTML

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<div class="jumbotron">  
    <div id="header" class="container">  
        <div class="header-photo">  
        <img src="http://creditworksusa.com/wp-content/uploads/2014/04/google-g-logo.png"class="img-responsive">
        </div>
    </div>
</div>

CSS

.jumbotron {
   height: 300px;
 }
.header-photo {
   position: absolute;
   left: 0px;
   top: 24px;
}
#header.container {
   position: relative;
}