I'm trying to make a navbar with its items on the right side of the screen, and the <Navbar.Brand> on the left. I managed to do it, however, when I change the screen to a phone screen size, the hamburger moves to the bottom of the Navbar.Brand. I am assuming its the where I placed my <Navbar.Brand> into is what could be causing it. But without that, I could not make the items move to the right either.
return (
<Navbar bg="light" expand="md" > {/*className="fixed-top"*/}
<Container >
<Navbar.Brand as={Link} to="/">
Logo
</Navbar.Brand>
</Container>
<Navbar.Toggle aria-controls="basic-navbar-nav"/>
<Navbar.Collapse id="basic-navbar-nav" className="me-5" >
<Nav className="ms-auto">
<Nav.Link as={NavLink} to="/">Products</Nav.Link>
<Nav.Link as={NavLink} to="">Cart</Nav.Link>
</Nav>
</Navbar.Collapse>
</Navbar>
)