I am trying to organize my content into three sections as follows:
- A - main content of page
- B - very important content (must be visible without scrolling)
- C - less important content.
The current layout I have is like this:
-----
|A|B|
|A|C|
-----
However, when the viewport width is reduced, it changes to:
---
|A|
|B|
|C|
---
resulting in B not being visible on the screen.
I have managed to change it to:
---
|B|
|C|
|A|
---
What I really need is:
---
|B|
|A|
|C|
---
Is there a way to achieve this using bootstrap or any other method?