Hi,
I'm looking for a solution to change breakpoint for forcing sidebar to bottom of the page if width is <991 px.
I use ccs.
I have already changing the breakpoint for the nav bar with this :

@media (min-width: 768px) and (max-width: 991px) {
.navbar-collapse.collapse {
display: none !important;
}
.navbar-collapse.collapse.in {
display: block !important;
}
.navbar-header .collapse, .navbar-toggle {
display:block !important;
}
.navbar-header {
float:none;
}
}
thanks.

CommentFileSizeAuthor
bootstrap.jpg43.08 KBzorax
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

zorax created an issue. See original summary.

zorax’s picture

it can be achieve by css with float.

saurabh.dhariwal’s picture

You can use 'col-sm-12 col-md-3' class for sidebar. So it directly goes down.
Otherwise you can also apply css for sidebar like:

.right-sidebar-selector { 
  width: 100%;
}

Let me know if you face any query/concern regarding this.

Thanks!

markhalliwell’s picture

Status: Active » Closed (works as designed)