Hi, I’d be interested in the answer to this one too! Best Wishes
Okay, in the absence of an official advice, here’s how I did it. I added this to my css:
@media screen and (max-width: 1024px) {
.content-container.site-container {
display: grid;
grid-template-columns: 100%;
}
aside#secondary {
order: 1;
}
#main {
order: 2;
}
}
Hi @stevieboy23 This is the solution I came up
@media screen and (max-width: 1024px)
{
.has-sidebar .content-container
{
display: flex;
flex-direction: column-reverse;
}
}
Ah well, it seems we both solved it ourselves then!!
Best Wishes
Hey,
Glad you both were able to create solutions! Let us know if there’s anything else we can help you with.
Best,
Hannah