Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1346298

    Hi
    Under WooCommerce settings – products (/wp-admin/admin.php?page=wc-settings&tab=products) we can change the following Enfold settings:
    – Column Count
    – Product Count
    When we set the column count to 3, we have one column on mobile and three columns on all other devices (desktop, tablet).
    Is it possible to have this a little bit more responsive, for example 3 columns on desktops, 2 columns on tablets, 1 column on mobile or something like that?
    Thanks very much.
    Best regards
    Mike

    #1346389

    Hey Michael,

    Thank you for the inquiry.

    Adjusting the width of columns on tablet view should be possible. Are you using the product grid element, or just the default product template? Please provide the URL of the product page so that we can check the elements directly.

    Best regards,
    Ismael

    #1346408

    Hi Ismale
    I think we use the default product template, we use the generated shop page…should we use the product grid element?
    See the URL of the product page in the private content section.
    Thanks very much.
    Best regards
    Mike

    #1346534

    Hi,

    Thank you for the update.

    You can use this css code to adjust the column width on tablet view or when the screen width is less than 989px.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive #top #main .products .product {
        margin: 0 1% 1% 0;
        width: 49%;
      }
    
      .responsive #top .products .product:nth-child(even) {
        clear: none;
      }
    }
    

    Best regards,
    Ismael

    #1346559

    HI Ismael
    It works, thank you very much.
    You can close this issue.
    Best regards
    Mike

    #1346616

    Hi,

    Great, I’m glad that Ismael could help you out. I’ll close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Responsive WooCommerce Product Columns’ is closed to new replies.