In a blueprint, is it possible to define columns within a section?
I’ld like to end up with a layout like this:
With the sections with grey backgrounds, I’ld like to stack fields. The “trick” with giving fields a width doesn’t work, as in the left pane there can be multiple fields, and in the one on the right there can be only one.
No, section don’t have a width and they cannot contain columns. But couldn’t you achieve the same with columns that contain sections?
Maybe, but I don’t see how .
In the simplified example above I have basically 3 compositions:
- full-width
- 3/4 - 1/4
- 1/2 - 1/2
Like this, but maybe I didn’t quite get it:
title: Default Page
columns:
fullWidth:
width: 1/1
fields:
headline:
label: This is a headline field in a full-with column
hello:
label: Another field in the full width column
type: text
firstHalf:
width: 1/2
sections:
section1:
type: fields
fields:
info:
type: info
text: This is the first field within a fields section within a 50% column
field1:
label: Second field
type: text
field2:
label: Third field
type: pages
secondHalf:
width: 1/2
sections:
anotherSection:
type: fields
fields:
2ndInfoField:
type: info
text: This is another fields section in another 50% width column
secondFull:
width: 1/1
fields:
fieldy:
label: Another field in another full-width column
type: text
Of course, there could be more columns with 1/3 and 2/3, was a bit lazy and as you can see from the not so well chosen names, I typed it quickly.
1 Like
Oh, you can reset columns like this. That’s basically what I want, I think.
I’ll try it out. Thank you so much for the fast feedback, Sonja!