Ask Your Question
0

Is it possible to disable the automatic line-breaking feature in the textarea section of the Joomla Backend?

asked 2023-05-04 08:53:38 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-05-04 09:04:01 +0000

woof gravatar image

Yes, it is possible to disable the automatic line-breaking feature in the textarea section of the Joomla Backend by using custom CSS.

You can add the following CSS code in the template's custom CSS editor or in the Joomla Global Configuration Editor:

textarea { white-space: pre !important; }

This code will override the default white-space value and set it to "pre", which means that the text will be displayed exactly as it is entered, without any automatic line breaks.

Note: This will affect all textareas on the website, not just the Joomla Backend. If you only want to disable the automatic line-breaking feature in the Joomla Backend, then you will need to add more specific CSS selectors to target only the textarea elements in the Joomla Backend.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-04 08:53:38 +0000

Seen: 12 times

Last updated: May 04 '23