Place info text in the sidebar

Yes I know, but it is another way to show a help. I use this very often.

The editor finds this help direct under the input field, which I think is very clear. But that has to decide each UI designer himself …

[added:]
e.g. this shows like:

Hint: click on the previous image twice to let it grow!

Look for the lines with the grey colored text under each input field.

My related blueprint file of this hardcopy is:

<?php if(!defined('KIRBY')) exit ?>

# site blueprint

title: Website-Einstellungen
pages: 
  template:
    - default
    - reports
    - blog
    - events
files: true
fields:
  title: 
    label: Name der Website
    type:  text
    help:  Bitte den &quot;Namen&quot; der Website (u.a. im Kopf jeder Seite) eingeben.
  slogan: 
    label: Slogan der Website
    type:  text
    help:  Bitte den &quot;Slogan&quot; der Website (zweite Zeile im Kopf jeder Seite) eingeben.
  author: 
    label: &quot;Author&quot; der Website
    type:  text
    required: true
    help:  Bitte den &quot;Autor&quot; der Website f&uuml;r den unsichtbaren &lt;HEAD&gt;-Bereich aller Seiten eingeben.
  description: 
    label: &quot;Description&quot; der Website
    type:  textarea
    required: true
    help:  Bitte die &quot;Beschreibung&quot; der Website f&uuml;r den unsichtbaren &lt;HEAD&gt;-Bereich aller Seiten eingeben.
  keywords: 
    label: &quot;Keywords&quot; der Website
    type:  tags
    required: true
    help:  Bitte die &quot;Keywords&quot; (mit Komma getrennte Stichworte) der Website f&uuml;r den unsichtbaren &lt;HEAD&gt;-Bereich aller Seiten eingeben.
  copyright: 
    label: Fu&szlig;zeile
    type:  textarea
    required: true
    help:  Bitte die &quot;Fu&szlig;zeile&quot; f&uuml;r alle Seiten eingeben mit Links zu Impressum, Datenschutzerkl&auml;rung etc.

If you save this blueprint file in “utf8 with bom” format, you can avoid the use of &uuml; for the German “Umlaute” like “ü”.

1 Like