Good day to you, Scott!
Although your solution made the box one under another, it did nothing with the order of the title and photos.
So here’s more suitable solution using Flexbox, that worked for me:
.null-instagram-feed {
display: -webkit-box;
display: -moz-box;
display: box;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
box-orient: vertical;
}
ul.instagram-pics {
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
box-ordinal-group: 2;
}
p.clear {
-webkit-box-ordinal-group: 1;
-moz-box-ordinal-group: 1;
box-ordinal-group: 1;
}
More info about using flexbox: https://stackoverflow.com/questions/7425665/switching-the-order-of-block-elements-with-css
HTML+CSS demo: https://jsfiddle.net/thirtydot/hLUHL/
Thank you for your care.
-
This reply was modified 6 years, 7 months ago by
madfcat.