Created
June 18, 2014 21:43
-
-
Save dk8996/4f4fba2b1ac62bc00109 to your computer and use it in GitHub Desktop.
Fixed search bar using Bootstrap 3.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="navbar navbar-inverse navbar-fixed-top"> | |
<div class="container"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
<a class="navbar-brand hidden-xs" href="#">CompAny</a> | |
<a class="navbar-brand visible-xs" href="#">C</a> | |
<form class="navbar-form pull-left" role="search"> | |
<div class="input-group"> | |
<input type="text" class="form-control" placeholder="Search"> | |
<div class="input-group-btn"> | |
<button type="submit" class="btn btn-default"><span class="glyphicon glyphicon-search"></span></button> | |
</div> | |
</div> | |
</form> | |
</div> | |
<div class="navbar-collapse collapse"> | |
<ul class="nav navbar-nav navbar-right"> | |
<li class="active"><a href="#">Home</a></li> | |
<li><a href="#about">Browse Courses</a></li> | |
<li><a href="#contact">Active Courses</a></li> | |
</ul> | |
</div> | |
<!--/.navbar-collapse --> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media(max-width:767px) { | |
.navbar .navbar-form { | |
width: 185px; | |
padding-left:0; | |
padding-right:0; | |
} | |
} | |
@media(min-width:768px) { | |
.navbar .navbar-form { | |
width: 250px; | |
} | |
} | |
.navbar .navbar-form { | |
padding-top: 0; | |
padding-bottom: 0; | |
margin-right: 0; | |
margin-left: 0; | |
border: 0; | |
-webkit-box-shadow: none; | |
box-shadow: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fixed search bar example:
http://jsfiddle.net/KSCvB/10/embedded/result/
Blog post:
http://www.mentful.com/2014/06/22/fixed-search-navbar-with-bootstrap-3-0/