Off Canvas Panel icon order

Here is a nifty trick to rearrange the Off Canvas Panel icon order in GeneratePress. This is particularly useful when incorporating a split menu layout.

Off Canvas Panel icon - Original location
Off Canvas Panel icon – Original location

The below CSS will shift the Off Canvas Panel icon to the left of the primary menu.

@media (min-width: 769px) {
    #primary-menu > ul {
        display: flex;
    }

    .slideout-toggle {
        order: -1;
    }
}
Off Canvas Panel icon - Left aligned
Off Canvas Panel icon – Left aligned

Setting the order to 2 will shift the icon at the right side of the search icon in case you have it activated.

Off Canvas Panel icon - Right aligned