Answer the question
In order to leave comments, you need to log in
Fixed page width in Bootstrap?
There is a two-column layout. By default, bootstrap does not have a fixed width for pages, so when the window width decreases, the right column goes under the left one. How to fix for them a horizontal position so that they do not jump?
Answer the question
In order to leave comments, you need to log in
Do not include bootstrap-responsive.css
It is used for adaptive layout for different resolutions.
min-height: 900px;
for a diva who should not be less
Open CSS and if you have it in one file, then scroll down. There, through media, the behavior for various resolutions is indicated. You select it is necessary, you register the minimum width and all.
For example:
@media (max-width: 767px) {
.row-fluid.item-header [class*="span"] {
width: 100px;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question