Tagged: breakpoint, iPad
I have 4 column that looks great on desktop, also great (stacked on on top of the other) on mobile
but very bad on iPad > there is a screen shot and a link to the website in the private section <
so..
I tried setting the columns to individual height but it didn’t help
I also tried adding the css code suggested here https://kriesi.at/support/topic/change-4-column-breakpoint-smaller-screens/
but it affected the whole page and not just the green (#statistic) section and also affected mobile view stoped being stacked
so..is there a way to use the code
.responsive #top #wrap_all .flex_column {
width: 47%!important;
float:left;
margin-right: 3%!important;
}
so it will affect only the green (#statistic) section and only on iPad view (without affecting desktop or mobile view)?
Hey Doron,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width:1024px) and (min-width:768px) {
.home #statistic .flex_column.av_one_fourth {
width: 50%;
}
}
Let us know if this helps :)
Best regards,
Nikko
works perfectly! thank you so much!
:)