Is it possible to create a responsive overlapping logo on a Bootstrap navbar without affecting the hamburger menu icon?
Good day!
I am currently using Laravel Spark along with Bootstrap for my project, and I have encountered a specific challenge:
How can I achieve an overlapping logo on my webpage that remains responsive and adjusts its size based on the viewport?
As demonstrated in my Codepen example, I managed to get the layout I desire by using the following CSS styles:
.navbar-brand {
position: absolute;
}
.navbar-toggle {
z-index:1;
}
However, when resizing the browser window, the hamburger icon gets hidden under the logo, impacting the responsiveness design. Moreover, the logo does not scale accordingly.
Given my limited expertise in CSS and Bootstrap, could someone please provide guidance on how to address this issue?
Thank you,
Andreas