Archived topic
2-column to 1-column on mobile
3 replies · Started by Melissa on September 10, 2019
Viewing posts 1–4 of 4
On the first section of my page, where I have two columns (map and text), I would like the 1-column mobile version to put the text (second column)above the map (first columnn). Is this possible?
https://theslowroad.org/category/destinations/asia/malaysia/
Hi there,
Give this CSS a shot:
@media (max-width: 768px) {
#openingtext {
display: flex;
flex-direction: column-reverse;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Perfect--thanks!!
No problem :)
This archived topic is closed to new replies.