Good day guys. I've been trying for hours now regarding this problem. I wanted to achieve the large column position as stated below but I'm getting something else.
medium large What I get
[ A ] | [ A ][ ] | [ A ][ ]
--------- | --------- [ B ] | [ B ]
[ B ] | [ ][ ] | [ ]
--------- | [ C ] --------- | --------- ---------
[ C ] | [ ][ D ] | [ ][ D ]
--------- | [ ] | [ C ]
[ D ] | | [ ]
| | [ ]
As you can see there is a large gap between A and C in the large screen. I wanted that C to go up and take that blank spaces without using any hacks as much as possible.
Here is the code that I have tried.
<div class="row profile align-top">
<div id="A" class="column small-12 large-8">
.....
</div>
<div id="B" class="column small-12 large-4">
....
</div>
<div id="C" class="column small-12 large-8">
....
</div>
<div id="D" class="column small-12 large-4">
.....
</div>
</div>
Thanks guys!
Edit:
Adds jfiddle example: https://jsfiddle.net/k18zw694/2/