Collapse=False In Summary Block At Checkout

I want to set collapse=false for Summary block at checkout page. So, let it stay opened (in expanded mode), not collapsed when the page loaded. How to fix it?

Looks like you mean mobile view. In this case try to add the following code to the CSS section of the Theme editor

@media (max-width: 480px) {
  .ty-order-summary .ty-sidebox__body {
    display: block;
  }
}

Thanks ecomLabs. I tried and it worked. But the problem is, it couldn't be collapsed again when pushed collapse arrow at the corner of the box. I think we should change something in Javascript file. :?

Thanks ecomLabs. I tried and it worked. But the problem is, it couldn't be collapsed again when pushed collapse arrow at the corner of the box. I think we should change something in Javascript file. :?

We have tested it and the block can be collapsed without any problems on the clean CS-Cart installation

Looks like you mean mobile view. In this case try to add the following code to the CSS section of the Theme editor

@media (max-width: 480px) {
  .ty-order-summary .ty-sidebox__body {
    display: block;
  }
}

Sidebox important it works okay.

Sidebox General how can i work this way?

Sidebox important it works okay.

Sidebox General how can i work this way?

It works on my local installation with Sidebox General as well