Home › Forums › Iconic One Pro Support › Move sidebar to left › Reply To: Move sidebar to left
March 29, 2018 at 12:09 pm #5198
Themonic-Support
Keymaster
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.