Current layout structure:
+--------------+
| -----Row---- |
+--------------+
| Col 8 col 4 |
| ^ |
| | | //Vertical Space here between col-4
| ^ |
| Col 8 col 4 |
| -----Row---- |
+--------------+
Desired output:
+--------------+
| -----Row---- |
+--------------+
| Col 8 col 4 |
| col 4 | //Remove Vertical Space here between col-4
| Col 8 col 4 |
| -----Row---- |
+--------------+
Because there is vertical space between col-8, the columns on right with col-4 are vertically spaced as they are in same row. How do I remove the space?
I want to remove vertical spaces for column on the right side, not make all columns equal sizes.
If you look at this site: http://mashable.com/, see how second column is stacked with no vertical space and third column stacked with different size/height.
Similarly, I want to make my second column stacked with no vertical space.