Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1466715

    good morning I have a page in 2 columns with the grid, on the pc it is visible well, but I would like to display a single column, as it happens on smartphones, also on portrait and landscape tablets
    is it possible?
    thenks

    #1466764

    Hey fabio,

    Thank you for the inquiry.

    The cells or columns should automatically switch to a single column in mobile view. If you need the same layout on tablet views, please add this css code:

    @media only screen and (max-width: 1024px) {
      .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
      }
    
      .responsive #top #wrap_all .av-flex-cells .no_margin,
      .responsive #top #wrap_all .flex_column,
      .responsive #top .container .av-content-small {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
      }
    
      .responsive #top #wrap_all .av-flex-cells .no_margin.av-zero-padding {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
    }

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.