Hi,
My logo overlaps my menu when switching to tablet view. I’d like to adjust the breakpoint so the menu transitions to a hamburger menu earlier.
I believe the issue comes from the following code added to my theme settings under Custom CSS:
.logolink {
margin: 0;
padding: 30px;
display: flex;
justify-content: center;
position: absolute;
top: 0;
left: 5%;
@media screen and (max-width: 780px) {
padding-left: 0;
}
}
.header {
border: none;
min-height: 150px;
}
.full-menu {
border-bottom: solid 1px #cdcdcd;
position: absolute;
padding-right: 35%;
right: 0;
top: 15%;
}
.mega-menu-container {
width: 100%;
}
What changes should I make to my code to have the hamburger menu appear sooner? I believe the breakpoint I need is 1280px—does that look good to you? Or maybe the breakpoint isn’t the issue—do you have a better solution to prevent my logo from overlapping the menu?
I’m using the Habitat theme, and my website is Arvika Bike Rack.
Thanks in advance for your help!

