Reply To: Move sidebar to left

Home Forums Iconic One Pro Support Move sidebar to left Reply To: Move sidebar to left

#5198

You can use CSS media queries for this:

@media screen and (max-width:1024px) {

.site-content {
    float: right;
    border-left: 1px solid #F1F1F1;
}
.widget-area {
    float: left;
}

}

This CSS should go in Custom CSS plugin or in Live customizer CSS section.

You may have to adjust the media query parameter as per your need.

https://www.w3schools.com/css/css3_mediaqueries_ex.asp