Tagged: grid row
Hello. Everything looks great on iPhone Landscape and Portrait. Not so much on iPad modes. Please see images for issue(s).
Thank you,
Ryan
Maybe there is a way to say you only want to display X number of grids per row in order to give more real estate width wise?
Hi,
Yes there is a way to do that unfortunately since the columns you are using is 5 it won’t be even if we use 2-3 columns, the only solution I can give you is make it 1 column, I have added this code in your Quick CSS:
@media only screen and (max-width:1024px) and (min-width:768px) {
#top .av-flex-cells {
border: 0;
}
#top .av_one_fifth.flex_cell {
border: 1px solid #eee;
border-bottom: 0;
display: block;
float: none;
margin: 0 auto;
width: 90%;
max-width: 560px;
}
}
Let us know if the solution is good.
Best regards,
Nikko
Love it! Thank you very much.