dorsetdigital / silverstripe-element-imagetext
Adds an elemental content block with an image
Installs: 324
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:silverstripe-vendormodule
Requires
- dnadesign/silverstripe-elemental: ^3.0 || ^4.0
- silverstripe/cms: ^4.0
- silverstripe/vendor-plugin: ^1.0
This package is auto-updated.
Last update: 2024-10-19 21:16:59 UTC
README
Adds an elemental content block with an image
Requirements
- Silverstripe 4.x
- Silverstripe Elemental
Installation
- Install the code with
composer require dorsetdigital/silverstripe-element-imagetext
- Run a
dev/build?flush
to update your project
Usage
This module adds a simple way to add a content block with an HTML image By default, the module doesn't add much in the way of styling, it expects you to do this in your own CSS file
The CSS class assigned to the various image widths can be configured using a YML config file:
eg, for Bootstrap 4, you may want to use:
DorsetDigital\Elements\ImageTextElement:
sizes:
'col-md-6': '1/2 page width'
'col-md-4': '1/3 page width'
'col-md-3': '1/4 page width'
'col-md-2': '1/6 page width'