skip to Main Content

Twitter Bootstrap collapse all but first

I would like to programmatically collapse all but the first item in a Bootstrap 3 collapsible accordion. However, I'm running into some weird behaviour. Please check out this fiddle and let me know what's wrong. http://jsfiddle.net/k9o2j53a/ $('button').click(function(){ var panels =…

VIEW QUESTION

Twitter bootstrap – Lack of ripples in Bootstrap Material Design

I am trying to implement the bootstrap-material-design theme to my existing Bootstrap site. In my main.blade.php, I have this on top to denote the stylesheets. <!-- CSS --> <link href="/css/all.css" rel="stylesheet"> <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.2.1/css/material.min.css" /> {{--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.3.0/css/material-fullpalette.min.css" />--}} <!--…

VIEW QUESTION

center progress-bar in Twitter Bootstrap

The progress bar, the blue shading, is left aligned, but I'd like it to be centered: <link rel="stylesheet" href="//cdn.jsdelivr.net/bootstrap/latest/css/bootstrap.css"> <link rel="stylesheet" href="//cdn.jsdelivr.net/bootstrap/latest/css/bootstrap-theme.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <div class="progress"> <div class="progress-bar progress-bar-primary text-center" style="width: 25%">25%</div> </div> <div class="progress text-center"> <div class="progress-bar progress-bar-primary" style="width:…

VIEW QUESTION

Twitter bootstrap – Bootstrap: Social Media Buttons

I am trying to show social media buttons in my footer. This is the <ul>: <ul class="list-inline"> <li><a href="#" class="icoRss" title="Rss"><i class="fa fa-rss"></i></a></li> <li><a href="#" class="icoFacebook" title="Facebook"><i class="fa fa-facebook"></i></a></li> <li><a href="#" class="icoTwitter" title="Twitter"><i class="fa fa-twitter"></i></a></li> <li><a href="#" class="icoGoogle" title="Google +"><i…

VIEW QUESTION
Back To Top
Search