Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 523 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 523 Bytes

TextformatterTableWrapper

Simple Processwire TextFormatter to wrap a table in a div.

We use this to stop tables becoming unreadble on small devices by setting a min width and overflow-x: scroll on the wrapper.

.table-wrapper{  
    max-width: 100%;  
    overflow-x: scroll;
}

.table-wrapper > table{
    min-width: 480px;
}

Installation

The Processwire way.

How to use

Add this Textformatter in the details tab of the desired Textfield.