Hi @cemsdb
This error occurs when you increase the width of the offcanvas.
You can add the following style code:
@media (min-width: 992px) {
.offcanvas-cw div.t4-offcanvas.c-offcanvas--left {
-webkit-transform: translate3d(-525px,0,0);
transform: translate3d(-525px,0,0);
}
.offcanvas-cw div.t4-offcanvas.c-offcanvas--left.is-open {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
}
I have updated it in the custom.css file for you. Kindly check 🙂