Archived topic
Reverse column in mobile version
3 replies · Started by Matias on September 26, 2019
Hello, hope you can help me with this issue.
I'm working on a website and in mobile version there is a section I want to reverse the column order.
The corresponding div already has a mobile-column-reverse class, but seems that it's not working.
How can I apply thi change?
Thanks,
Matias Rodriguez
Hi there,
looks like you're missing the CSS that would have been imported with the Site - which would have been in the Customizer > Additional CSS.
You can add it back in:
@media (max-width: 768px) {
.mobile-column-reverse {
flex-direction: column-reverse;
}
}
Thanks for your help.
Already applied and it worked.
Glad to be of help