8,055 questions
1142
votes
35
answers
1.3m
views
How can I make Bootstrap columns all the same height?
I'm using Bootstrap. How can I make three columns all the same height?
Here is a screenshot of the problem. I would like the blue and red columns to be the same height as the yellow column.
Here is ...
283
votes
19
answers
762k
views
Bootstrap: Centering Elements Vertically and Horizontally
I have a page where only a form exists and I want the form to be placed in the center of the screen.
<div class="container">
<div class="row justify-content-center align-...
497
votes
20
answers
1.0m
views
Vertical Align Center in Bootstrap 4 [duplicate]
I am trying to center my Container in the middle of the page using Bootstrap 4. I have been unsuccessful thus far. Any help would be appreciated.
I have built it at Codepen.io so you guys can play ...
968
votes
26
answers
1.6m
views
vertical-align with Bootstrap 3
I'm using Twitter Bootstrap 3, and I have problems when I want to align vertically two div, for example — JSFiddle link:
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" ...
488
votes
24
answers
899k
views
Bootstrap align navbar items to the right
How do I align a navbar item to right?
I want to have the login and register to the right.
But everything I try does not seem to work.
This is what I have tried so far:
<div> around the <...
625
votes
15
answers
1.6m
views
Bootstrap NavBar with left, center or right aligned items
In Bootstrap, what is the most platform-friendly way to create a navigation bar that has Logo A on the left, menu items in the center, and Logo B on the right?
Here is what I've tried so far, and it ...
627
votes
16
answers
1.2m
views
Passing data to a bootstrap modal
I've got a couple of hyperlinks that each have an ID attached. When I click on this link, I want to open a modal ( http://twitter.github.com/bootstrap/javascript.html#modals ), and pass this ID to the ...
748
votes
12
answers
1.3m
views
Change navbar color in Twitter Bootstrap
How would I go about modifying the CSS to change the color of the navbar in Twitter Bootstrap?
1236
votes
34
answers
2.3m
views
Center a column using Twitter Bootstrap
How do I center a div of one column size within the container (12 columns) in Twitter Bootstrap 3?
.centered {
background-color: red;
}
<!-- Latest compiled and minified CSS -->
<link ...
321
votes
15
answers
536k
views
How can I override Bootstrap CSS styles?
I need to modify bootstrap.css to fit my website. I feel it's better to create a separate custom.css file instead of modifying bootstrap.css directly, one reason being that should bootstrap.css get an ...
111
votes
3
answers
112k
views
Bootstrap row with columns of different height
I currently have something like:
<div class="row">
<div class="col-md-4">Content</div>
<div class="col-md-4">Content</div>
<div class="col-md-4">...
814
votes
6
answers
594k
views
What is sr-only in Bootstrap 3?
What is the class sr-only used for? Is it important or can I remove it? Works fine without.
Here's my example:
<div class="btn-group">
<button type="button" class="btn btn-info btn-md"&...
1251
votes
43
answers
852k
views
How to make Twitter Bootstrap menu dropdown on hover rather than click
I'd like to have my Bootstrap menu automatically drop down on hover, rather than having to click the menu title. I'd also like to lose the little arrows next to the menu titles.
347
votes
11
answers
463k
views
Bootstrap dropdown sub menu missing
Bootstrap 3 is still at RC, but I was just trying to implement it. I couldn't figure out how to put a sub menu class. Even there is no class in css and even the new docs don't say anything about it
...
466
votes
29
answers
1.2m
views
Table fixed header and scrollable body
I am trying to make a table with fixed header and a scrollable content using the bootstrap 3 table.
Unfortunately the solutions I have found does not work with bootstrap or mess up the style.
Here ...