Hi there,
Please don’t duplicate posts. It has been answered here: https://br.ww.wp.xz.cn/support/topic/tema-hiero/
As I said there, I have not found this setting on your theme, but here is a CSS code that will let you do it. Go to Appearance > Customize > Additional CSS, and then put this CSS:
/* Put sidebar on left side */
.site-content {
margin: 0 0 0 340px;
}
.content-area {
float: right;
}
.site-sidebar {
margin: 0 -300px 0 0;
}
Hello there,
The code that @felipeloureirosantos suggested is correct. However it produces side effect, where the layout is broken on smaller screen. Try wrapping it with media query. Here’s my correction.
@media only screen and (min-width: 759px) {
/* Put sidebar on left side */
.site-content {
margin: 0 0 0 340px;
}
.content-area {
float: right;
}
.site-sidebar {
margin: 0 -300px 0 0;
}
}
Regards,
Kharis
My mistake. Thanks @kharisblank! Please @jeanbrandao use this code instead. 😉