Hello,
Is there a way for columns not to stack on top of each other when seen on mobile, i.e. for the columns to be shown next to each other (at least 2 columns on the same row)?
Thanks!
– Evelyn
Hey Evelyn,
Which elements do you want not to stack? The columns with tables will not work side by side. Do you mean the app icons?
Best regards,
Victoria
On my home page, the third section (Adiestramientos, with the icons), when shown on mobile it stacks the columns one on top of each other, but I don’t want them to stack, since they get incredibly larger.
Hi,
If you want to achieve this effect add the following to quick css:
@media only screen and (max-width: 989px){
#home_cursos .flex_column.av-break-at-tablet{
width:42%!important;
padding:2px!important;
}
#home_cursos .flex_column_table_cell{
float:left!important;
}}
Best regards,
Jordan Shannon
Thanks!