Column span in blueprints

Is it possible to start columns “in the middle” of a blueprint, i. e. have full-width fields in the beginning, and then further down, split the single column into multiple ones?

I know I can set fields to ½ width but that only makes them follow each other horizontally, basically; I need multiple related fields in one column and multiple related ones in the other. I hope you understand what I mean.

You can define as many columns as you need. A full width column can be followed by two 1/2 columns, which then can be followed by three 1/3 columns etc.

Can you give me an example? I don’t get it.

Basically, this is what I need:
columns

The gray background rectangles are the columns and the white ones inside are the fields.

columns:
  column1:
    - width: 1/1
    fields:
      ...
  column2:
    - width: 1/2
    fields:
      ...
  column3:
    - width: 1/2
    fields: 
    ...

Instead of fields, you can also use sections, of course. And play with the fields width inside the columns.

We also have the gap field to create gaps, if you don’t want fields to fill the complete width

Oh, I didn’t realize you would just add columns one after another. But thinking about it now, it makes total sense, as long as they add up to 100% width. Thanks. :slight_smile: