I am facing an issue with the burger menu where one of the options should trigger a dropdown, but the content is not adjusting properly.
The dropdown menu should push the other content downward, but currently, it overlaps.
I have included the code for the menu bar/burger menu below. I hope you can assist me, thank you.
https://codepen.io/SofieH/pen/ZvveNK
header {
background: #e7e7e8;
color: #EBEBD3;
padding: 0.5em 0;
position: relative;
}
header::after {
content: '';
clear: both;
display: block;
}
.logo {
float: right;
font-size: 1rem;
margin: 0;
text-transform: uppercase;
font-weight: 700;
}
.logo span {
font-weight: 400;
}
<!-- More CSS code here -->
</header>