kpcollier Posted June 28, 2022 Report Share Posted June 28, 2022 I've got a Details Datapage with only a text area field included in the results section. When viewed, the entire datapage looks just like one text area box. I am using this for a 'notes' section on my webpage. I need to be able to change the width and height size of this notes section depending on the size of the viewport. My problem is trying to select the right element. It seems a text-area field is comprised of multiple elements, and just trying to change the width of 'EditRecordcomments' doesn't do anything. Any ideas would be helpful! Quote Link to comment Share on other sites More sharing options...
futurist Posted June 29, 2022 Report Share Posted June 29, 2022 Hi @kpcollier You can try adding CSS to the #cke_EditRecordComments, like so: <style> #cke_EditRecordComments{ width: 250px !important; } </style> kpcollier 1 Quote Link to comment Share on other sites More sharing options...
GoodBoy Posted July 3, 2022 Report Share Posted July 3, 2022 Hello! You can also edit the toolbar's height and width in the DataPage settings without using any CSS. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.