Home Forums WoodMart support forum VC Products Widget List 2 Columns

VC Products Widget List 2 Columns

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #75795

    newsprince
    Participant

    Hello.

    Can somehow modify the products widget (grid or carousel) to make the List option to have 2 columns?

    Instead col-md-12 for desktop to be col-md-6 for every product.

    Check the demo url please.

    Thank you.

    #75801

    Hello,

    Please add this code to the Theme settings > Custom CSS:

    .elements-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
    .elements-list .product-grid-item {
        width: 49.5%;
        max-width: 49.5%;
        -webkit-box-flex: 1;
            -ms-flex: 1 1 49.5%;
                flex: 1 1 49.5%;
    }

    Best Regards

    #75803

    newsprince
    Participant

    Thank you very much, it works!

    #75816

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘VC Products Widget List 2 Columns’ is closed to new replies.