Tagged: grid row
Hi,
i’ve this page: http://www.domingocommunication.com/prova-home-smartphone-e-tablet/
i would like to change the grid row breakpoint ( the mobile behaviour) at 640px instead of 767px only on the grids of this page. Is there a custom class or a quick css i can apply?
best regards,
Nic
Hey piemoo!
Try adding this to your custom CSS.
@media only screen and (min-width: 767px) and (max-width: 640px)
.responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
margin-bottom: 0px !important;
width: 50% !important;
}
Cheers!
Elliott
Hey Elliott,
it seems it does not work..
i would like this: http://it.tinypic.com/r/abtf9k/9 on landscape mode of large smartphone screens like the new iphone 6s or the iphone 6 plus..
inserting your code the grid still appears like this:http://it.tinypic.com/r/dpwfvn/9
note i would like to apply this mod only to my .page-id-2996
best regards,
Nic
Hey!
You’ll need to play around with the screen values in the CSS.
(min-width: 767px) and (max-width: 640px)
To target whatever screen sizes you want it to use 2 columns on.
Cheers!
Elliott
Hey Elliott,
screen resolution of the iphone 6 (the second screenshot i sent you) is 667px width..inserting your code it seems it doesn’t work.
Best Regards,
Nic
Hey Elliott,
i’ve solved myself.
I write the solution in case someone has the same issue: i create a class #mobi and i put this in my custom css:
@media only screen and (max-width: 640px) {#mobi .responsive {
margin-bottom: 0px !important;
width: 50% !important;
float: left;
}}
@media only screen and (max-width: 640px) {#mobi .av-flex-cells {
margin-bottom: 0px !important;
width: 50% !important;
float: left;
}}
@media only screen and (min-width: 640px) {#mobi .no_margin {
margin-bottom: 0px !important;
width: 50% !important;
float: left;
}}
Now it still work.
Best Regards,
Nic