Hi there,
This should get you pretty close:
– Create a new inside_navigation
hook element:
https://docs.generatepress.com/article/hooks-element-overview/
With the following content:
<div class="mobile-social-icons hide-on-desktop hide-on-tablet">
Insert social icons here
</div>
Choose Entire site in Display Rule.
– Add the following CSS:
@media (max-width: 768px) {
.header-widget {
display: none;
}
.inside-header {
display: flex;
flex-direction: column-reverse;
}
.main-navigation .menu-toggle {
flex-grow: 0;
margin-left: auto;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/