Skip to main content

Events Manager Plugin Display 2 Columns in Brizy

Comments

5 comments

  • Ariel H.

    Hi James,

    Thank you for reaching out. We’ve reviewed the page you provided, and it currently appears as follows.

    It’s possible that the link you shared is incorrect. Please send us the correct link so we can take another look and offer a possible solution.

    Best regards,  
    Ariel H.

    0
  • James Smith

    Hi Ariel,
    Sorry but there were no events uploaded to the site. They are live now. I believe I would just need to add specific CSS that would change the output on mobile devices.

    The following html is what changes the amount of columns. Is there a way we can add specific CSS to change the 250px to 150x when on mobile devices (when i change the 250px to 150px on chrome developer tools to preview, it puts the items into 2 columns)?

    <div class="em em-view-container" id="em-view-903937268" data-view="grid" style="--view-grid-width : 250px">
     
    0
  • Ariel H.

    Hi James,  

    Thank you for the update.  

    Here’s some CSS you can try—let me know if it works for you.  

    @media (max-width: 768px) {
      .em-view-container {
        --view-grid-width: 150px;
      }
    }

    Best regards,  
    Ariel H. 

    0
  • James Smith

    Thanks again for your help Ariel!!

    That didn't end up working but i realised the layout changed when i changed the CSS to make changes to .em instead of .em-view-container with the following:

    @media (max-width: 768px) {
    .em {
        --view-grid-width: 150px;
      }
    }

     

    Thanks again

    0
  • Ariel H.

    Hi James,  

    Thank you for the update.  I'm glad you were able to update the CSS and fix the issue.

    Cheers!

    0

Please sign in to leave a comment.