Hello, I am currently using four columns in my footer. When viewed on mobile, all the columns stack on top of each other. Any way to make it into two columns on mobile only?
Hey CPM_usa,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
@media only screen and (max-width: 767px) {
#footer .flex_column {
width: 50% !important;
float: left;
}
}
I hope that helps!
Sarah
that did it! Thank you so much!