Hi
I would like to force 1 column view for iPad portrait (res 768px).
There is colour section with 2 rows:
2/3 column, 1/3 column in first row
1/3 coulm, 1/3 column, 1/3 column in second row
on iphone there is only one column per row and I would like to force this view for iPad landscape (768px)
I am using child theme with settings in style.css
Hey tpetauer,
You can try this custom CSS code:
@media only screen and (max-width: 769px) {
.responsive #top #wrap_all .container { width: 100%; max-width: 100%; }}
Best regards,
John Torvik
I tried that – is not working.
Hi tpetauer,
and add this:
@media only screen and (min-width: 768px) and (max-width: 1024px) {
#top div .av_one_third {
margin-left: 0;
width: 100% !important;;
display: block;
}
#top .flex_column_table {
display: block;
table-layout: initial;
width: 100%;
}
#top div .av_two_third {
margin-left: 0%;
width: 100% !important;
display: block;
}
#top .flex_column_table_cell {
float: none;
display: block;
}
}
If you need further assistance please let us know.
Best regards,
Victoria