The Airtable Community will undergo scheduled maintenance on September 17 from 10:00 PM PST to 11:15 PM PST. During this period, you may experience temporary disruptions. We apologize for any inconvenience and appreciate your understanding.
Aug 18, 2022 02:03 AM
Add the “User CSS” chrome extension (free) and then paste in the following:
/* add extra margin to top*/ /* so filter popup does not hide first record*/
#viewContainer { margin-top:120px; }
/* hide annoying view popups*/ div[id$=“tooltip”].dark{ display:none; }
/* restrict height of long text fields in form view*/ /* and add scroll bar */ .contentEditableTextbox{ max-height:200px; overflow-y:auto; }