Archived topic
Footer Widget side by side
5 replies · Started by afuente26 on July 13, 2021
Hello,
I have 4 widgets in one of my sites. I want to display them 2 side by side, then the other 2 also side by side, but just in the mobil-version.
I´m not able to do this. Could it be possible?
Thanks
Angel
Hi Angel,
Can you link us to the page in question? To check how the widgets are structured and provide a custom CSS writeup if necessary. :D
sorry, of course
Hi there,
try adding this CSS:
@media (max-width: 768px) {
.footer-widgets .inside-footer-widgets {
flex-direction: row !important;
flex-wrap: wrap;
}
.footer-widgets .inside-footer-widgets > div {
flex: 1 1 50%;
text-align: center;
}
}
you are really great. thanks very much!!
Glad we could be of help!