How to center everything in multicolumn section and collections section in origin theme

Hello I have the origin theme and want to center the ‘multicolumn section’ and the ‘collection list’ section.

My store url is www.boxywallets.com for reference.

Hello @lelestore1 ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code below:

.multicolumn-list, .collection-list {
    justify-content: center;
}
.multicolumn  .title, .collection-list-wrapper .collection-list-title {
 margin: 0 auto;
}

Thanks