Hi. I have the “Textblock Content Styling” on a lot of my pages, set to “2 Columns”. It looks great on desktop, but not good on mobile. Can you get me CSS code so that all mobile views are “1 column”?
Hey bemodesign,
Could you post a link to where we can see the elements in question please?
Best regards,
Rikard
The 3rd section down has 2 columns.
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (max-width: 767px) {
#top .av_textblock_section .avia_textblock.av_multi_colums {
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
}
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
still shows 2 columns on mobile.
Hi bemodesign,
Please add try to add !important to Mike’s code:
@media only screen and (max-width: 767px) {
#top .av_textblock_section .avia_textblock.av_multi_colums {
-webkit-column-count: 1 !important;
-moz-column-count: 1 !important;
column-count: 1 !important;
}
}
Hope it helps.
Best regards,
Nikko
thanks!!!