sacredpath
(@sacredpath)
Automattic Happiness Engineer
Hi there, the following custom CSS will fix the menu toggle on Minnow. The last rule below is a Media Query which allows us to control things by screen/window width. It applies a padding to the right at the point that the content goes full width so that it isn’t hidden behind the menu toggle. See what you think.
.site {
position: relative;
}
.site-header {
position: static;
}
.menu-toggle {
position: fixed;
top: 30px;
z-index: 10;
}
.menu-toggle.toggle-on {
right: 320px;
}
@media screen and (max-width: 1087px) {
.site-content {
padding-right: 70px;
}
}
Hi sacredpath, works exellently! Many thanks!