Hi,
I have a problem with icon boxes. Text is being cropped on tablets in portrait mode. I’d like to get the columns to stack as they do on mobile phones. How can I force them to stack?
Boxes in portrait mode ipad http://screencast.com/t/wdP2aPN32
Boxed in portrait mode iphone http://screencast.com/t/Q8tMCEjA9
With thanks
Phil
UPDATE: Having trawled through the forums, I found this
https://kriesi.at/support/topic/responsive-screen-width/
@media only screen and (max-width: 800px) {
.flex_column { width: 100% !important; margin-left: 0 !important; }
.flex_cell {
width: 100%!important;
margin-left: 0!important;
display: block;
}}
which looks to have fixed my problem.
Thanks