More Than One Block Inside a Column? How?
-
If you want to stack more than one block inside of a column, how do you do that?
If I were to visualize this as code, it should look like this:
<row>
<column>
<block>one</block>
<block>two</block>
<block>three</block>
</column>
<column>
<block>one</block>
<block>two</block>
<block>three</block>
</column>
</row>I’ve been trying every which way but loose and all I can get it to do *at best* is in this format:
<row>
<column>
<block>one</block>
</column>
<column>
<block>one</block>
</column>
</row>
<row>
<column>
<block>two</block>
</column>
<column>
<block>two</block>
</column>
</row>
<row>
<column>
<block>three</block>
</column>
<column>
<block>three</block>
</column>
</row>Having it the first way is important for the order the blocks stack on mobile.
- The topic ‘More Than One Block Inside a Column? How?’ is closed to new replies.