Hello,
My right sidebar width is fixed at 300px and I have a breakpoint set at 990px width to move the sidebars to the bottom using the below CSS.
@media(max-width: 991px) {
.right-sidebar .site-content {
flex-direction: column;
}
.site-content .content-area {
width: 100%;
}
}
I want to display the 2 sidebars beside each other at the bottom when the width is between 600px-990px. I have tried adding the following CSS but it doesn’t seem to work.
.inside-right-sidebar {
flex-direction: row;
}