0

I have a TYPO3 website with latest powermail plugin.

all inputfiels got col-md-6 as css class

I want that they all have col-md-12 wheren can I change this?

Thanks

Daniel
  • 6,916
  • 2
  • 36
  • 47
Felix
  • 5,452
  • 12
  • 68
  • 163

1 Answers1

1

See documentation of powermail: https://docs.typo3.org/typo3cms/extensions/powermail/Faq/Index.html#how-can-i-use-responsive-columns-in-powermail Classes can be changed via TypoScript.

For example, from the manual:

plugin.tx_powermail.settings.setup {
    styles {
        numberOfColumns = 2
        framework {
            rowClasses = row
            fieldAndLabelWrappingClasses = form-group col-md-6
        }
    }
}
elixenide
  • 44,308
  • 16
  • 74
  • 100