How to change the paragraph width of the rich text element?

How to change the paragraph width of the rich text element?
It isn’t full width.

Hey Tobias,

you mean you only want to constrain the

tags within the rich text element? If so you can either do this by adding some global custom CSS…

.brxe-text p {
  max-width: 30ch;
}

… or on the element level…

root p {
  max-width: 30ch;
}

Let me know if I understood you correctly and if that helps.

Best,

André

1 Like

Hey Tobias,

after reading your report again I might have misunderstood your original question. Your paragraphs do not take up the full width although you would expect them to, right? Are you using ACSS? If so make sure that ACSS does not have any text (and/or heading) line lengths set. In a previous version ACSS used default values which limited headings and paragraphs to a specific number of characters.

Best,

André

1 Like

Perfect. That’s exactly what I was looking for. Thank you very much.