• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML <TEXTAREA> question

SONYFX

Senior member

Is it possible to disable the text field but still make the scroll bar "scrollable"? I tried READONLY and DISALBED but they don't work, thanks.
 
If you want it to look disabled in read-only mode, try adding a gray background color.

<textarea style="background-color:#eee" readonly="readonly">
 
Back
Top