Block Grid LESS responsive for landscape tablet

Hello,

I would like to have my block grid less rensponsive. I mean on a Tablet in landscape I would like to keep my 3 columns. How can I fix this problem?

URL: https://irissymposium.be/home-pt/

This is an automated message to notify you that your thread was posted in the wrong forum, and it has been moved to the correct place. A member of our team will be happy to reply just as soon as your thread is up, however there may be a delay since it was placed in the wrong location (see global notice at top of page). How support works.

For support, please post all questions in the Support Forum.

For peer to peer conversations with other Themeco customers about tips, customizations, or suggestions you are welcome to use the Conversation Forum (no official support provided here).

Design & Development, Marketing & Media, and Hosting & Optimization are for discussion with fellow Apex members about non Themeco related topics. Please keep this in mind in the future.

Thank-you!

Hello,

I understand.
But now nobody is answering mij question anymore!

Hello There,

Thanks for writing in! Just for future topics, self responding or bumping your post pushes it back in our Queue system so it takes longer to respond to. We are proud to provide support to our customers 24/7/365! Questions are answered in the order received and response times can take up to 24 hours, although typically sooner. Complex questions or busy times may take longer.

To resolve your issue, please edit your page back in Cornerstone and insert the following custom css in the settings tab, Settings > Custom CSS

@media (max-width: 979px){
  .x-block-grid.three-up>li:nth-child(2n+1) {
    clear: none;
  }

  .x-block-grid.three-up>li:nth-child(2n) {
    margin-right: 4%;
  }

  .x-block-grid.three-up>li:nth-child(3n) {
    margin-right: 0;
    margin-top: 0;
  }

  .x-block-grid.three-up>li {
    width: 30%;
  }
}

Hope this helps. Please let us know how it goes.