I need help with organizing the header section on my website, which includes:
- Logo
- Login and Register buttons
- Menu
- Language picker
I want to display them all in a single row, but I'm having trouble as they overlap when I resize the window. Specifically, the login button overlaps the logo and the language picker hides part of the main menu.
<div id="header-container" class="container">
<div id="header-container-nav" class="row align-items-center">
<div class="col-md-3">LOGO</div>
<div class="col-md-1">LOGIN BUTTONS</div>
<div class="col-md-5">MENU</div>
<div class="col-md-1">LANGUAGE</div>
</div>
</div>