Reputation: 249
How do you set the value at which the NavBar should collapse using react-bootstrap? I can't seem to get it to work with anything I've found online.
For example, its currently collapsing at 768px but I would like to have it collapse at 850px.
<Navbar inverse collapseOnSelect>
<Navbar.Header>
<Navbar.Brand>
<a className='navItem' href="#" id='name_badge'><Link to='/'>asdf</Link></a>
</Navbar.Brand>
<Navbar.Toggle />
</Navbar.Header>
<Navbar.Collapse>
<Nav>
<NavItem className='navItem hvr-wobble-skew' eventKey={1} href="#"><Link to='/about'>About</Link></NavItem>
<NavItem className='navItem hvr-wobble-skew' eventKey={2} href="#"><Link to='/projects'>Projects</Link></NavItem>
<NavItem className='navItem hvr-wobble-skew' eventKey={3}><Link to='/skills'>Skills</Link></NavItem>
<NavItem className='navItem hvr-wobble-skew' eventKey={3}><Link to='/contact'>Contact</Link></NavItem>
</Nav>
<div className="pullRight">
<Nav>
<Navbar.Text>
<Navbar.Link target='_blank' href="https://www.facebook.com/pages/bla"><FaInstagram size={30}/></Navbar.Link>
</Navbar.Text>
<Navbar.Text>
<Navbar.Link target='_blank' href="https://www.facebook.com/pages/ad"><FaFacebookSquare size={30}/></Navbar.Link>
</Navbar.Text>
<Navbar.Text>
<Navbar.Link target='_blank' href="https://www.facebook.com/pages/fd"><FaGithubAlt size={30}/></Navbar.Link>
</Navbar.Text>
</Nav>
</div>
</Navbar.Collapse>
</Navbar>
Upvotes: 7
Views: 3278
Reputation: 1353
This is boostrap.css issue not react, This should solve your problem.
@media (max-width: 850px) {
.navbar-header {
float: none;
}
.navbar-toggle {
display: block;
}
.navbar-collapse {
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.navbar-collapse.collapse {
display: none!important;
}
.navbar-nav {
float: none!important;
margin: 7.5px -15px;
}
.navbar-nav>li {
float: none;
}
.navbar-nav>li>a {
padding-top: 10px;
padding-bottom: 10px;
}
.navbar-text {
float: none;
margin: 15px 0;
}
.navbar-collapse.collapse.in {
display: block!important;
}
.collapsing {
overflow: hidden!important;
}
}
Working react-bootstrap example: https://codepen.io/Yasinuzun/pen/MQWLNz
Upvotes: 3
Reputation: 735
This is actually not a react issue but the Bootstrap.css causing the alteration of the screen (hide/show). I advise to look through the bootstrap.css and find the following @media (min-width: 768px)
you'll find some .nav classes there.
Upvotes: 0