I'm currently designing a webpage layout with a calendar on one side and a series of information-divs on the other. In desktop view, I want the calendar to span three rows like so:
CAL DIV1
CAL DIV2
CAL DIV3
Right now, I am achieving this using nested bootstrap grids in column 2. However, this setup may not work for my mobile responsive design plan where I would like to display the elements as follows:
DIV1
DIV2
CAL
CAL
CAL
DIV3
I have been struggling to find a structure that enables me to rearrange DIV1 and DIV2 above CAL when viewed on a mobile device.
While a bootstrap solution is preferred, any guidance or suggestions are greatly welcomed.