Problem with Panel formatting

Hey there,

Somehow, my two columns seam to be linked somehow. The moment I ad content in the second one, it also pops in the first one :confused:

title: À propos

columns:
  - width: 2/3
    sections:
      content:
        type: fields
        fields:
          author:
            label: Author
            type:  text

  - width: 1/3
    sections:
      content:
        type: fields
        fields:
          text:
            label: Description
            type:  textarea 

Ideas?

You need to name your columns and don’t repeat names(you have to ‘content’ sections), so it should be something like:

columns:
  left:
    width: 2/3
    sections:
      # sections in the left column
      contentleft:
        type: fields
        fields:
          author:
            label: Author
            type:  text
  right:
    width: 1/3
    sections:
      # sections in the right column
      contentright:
        type: fields
        fields:
          text:
            label: Description
            type:  textarea
1 Like

@Turqueso, it does indeed work! I feel like I’ll become a Kirby panel ninja after all your help; thanks again!

2 Likes