Hi, I have a couple of pages with 5 columns that contain text and images. When viewed on a mobile phone the text overlaps.
Is there anything I can do to so it displays the columns differently on mobiles? I’m on 3.8
thanks for the support
Hey jonathan_lees,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
In mobile version it will be just one column in tablets it will be 3 col as you see in the attached screenshot.
If you like to modify in mobile and tablet please feel free to adjust the width value in the below code.
@media only screen and (max-width: 767px) {
.responsive #top .av_one_fifth {
width: 32%!important;
}}
@media only screen and (max-width: 480px) {
.responsive #top .av_one_fifth {
width: 100%!important;
}}
Best regards,
Vinay
Perfect, thank you!