Hey Tom,
I added that CSS with the minor changes Jesse posted to enable the drop down as well as
@media (min-width: 769px) and (max-width: 1024px) {
.main-navigation {
background-color: #;
}
}
so that the medium menu background color wasn’t inherited from my transparent desktop menu.
and it seemed to initiate the mobile header properly but it keeps the spacing from the sider header when viewed on medium devices like the ipad pro.
I poked around in the sider CSS within the additional CSS area and changed the first line
@media (min-width: 1025px) {
body {
padding: 0 50px 50px;
margin-left: 300px;
}
to 1025px instead of 1000px to match the menu breakpoints. That seemed to fix the issue, was that the correct course of action?
Thank you.