dorsetdigital/silverstripe-element-imagetext

Adds an elemental content block with an image

v1.0.2 2020-01-13 13:42 UTC

This package is auto-updated.

Last update: 2024-03-19 20:10:35 UTC


README

Adds an elemental content block with an image

License Scrutinizer Code Quality Build Status

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'