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
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