Hello everyone!
I am a beginer but very enthusiast user of Kirby. I was familiar with html and css before starting the kirby adventure, but I am new to YAML, and I am encountering an issue.
I struggle to make some “label” and some “help” appear on the panel despite the fact they seems to be properly set in my blueprint.
Here is my blueprint (project.yml):
title: Project
tabs:
contentTab:
columns:
left:
width: 1/2
sections:
firstImage:
type: files
label: First Image
accept:
- image/jpg
- image/png
textBlock:
label: Text Block
type: fields
fields:
client:
label: Client
type: text
help: "If no client, write 'self initiated'. If the name of the client is the title of the project, leave this field empty."
numberOfPages:
label: Number of Pages
type: number
format:
label: Format
type: group
fields:
width:
label: Width
type: number
width: 1/2
height:
label: Height
type: number
width: 1/2
help: "Enter dimensions in cm"
year:
label: Year
type: date
display: YYYY
text:
label: Description
type: writer
right:
width: 1/2
sections:
images:
type: files
label: Additional Images
accept:
- image/jpg
- image/png
layout: cards
seo: seo/page
And here is what i got and in red what I would like to get:
It seems impossible to set a label and a help area to a section containing fields, or in a group of fields… Is that right? How could I arrange that?
If someone has an idea I would be very grateful
Thank you by advance!