I am working on the following site.
https://sheboyganbjj.com/instructors.php
I need the instructor photos and bios to display as one column in Responsive view.
I did adding in code from other pages in the site where the two column pages display as one in Responsive view and was unsuccessful.
2
Answers
Adding
flex-wrap: wrap;
in your CSS for the class.flex-container
should do the trick. This allows the content to wrap on multiple lines if it can’t fit everything on one line.Check out the following Flexbox guide, it might be of great help: https://css-tricks.com/snippets/css/a-guide-to-flexbox/
**caution : you have to change the width property according to your window size **
or you can use grid box layout
like
** you can change the width of both element according to your need**