josehoudini / kirby-writer-textalign
Adds text alignment buttons to the Kirby Writer field.
Package info
github.com/josehoudini/kirby-writer-textalign
Language:JavaScript
Type:kirby-plugin
pkg:composer/josehoudini/kirby-writer-textalign
0.3.4
2025-12-04 20:53 UTC
Requires
README
Adds text alignment buttons (left, center, right) to the Kirby Writer field.
Installation
Download
- Run
composer require josehoudini/kirby-writer-textalign
or
- Download the .zip
- Copy the folder into
/site/plugins/kirby-writer-textalign
Usage
- The plugin automatically adds alignment buttons to all Writer fields:
fields: text: type: writer marks: - align-left - align-center - align-right
- Define your css classes:
.align-left { text-align: left; } .align-center { text-align: center; } .align-right { text-align: right; }