To alter the node ID field (nid) of our content view we add this to the file: asset_injector.css.gin.yml /* Views exposed filter: appropriate field widths */ .views-exposed-form #edit-nid { max-width: 10ch; } 06.08.2026 | Lothar Ferreira Neumann Change custom text field sizes in Gin Backend Theme using Asset Injector
my_module.module <?php /** * Implements hook_theme_suggestions_HOOK_alter() for table. */ function hook_theme_suggestions_table_alter(array &$suggestions, array $variables): void { if (empty($variables['attributes']['class'])) { return; } if (is_array($variables['attributes']['class']) && in_array('ief-entity-table', $variables['attributes']['class'])) { $suggestions[] = 'table__simple'; } } 22.06.2026 | Pascal Crott Gin: Make use of the simple table
Issue:You want to use the Gin edit form for all content entities, including custom entities.Solution:The Gin Everywhere module was developed to solve this specific issue. 26.02.2026 | Pascal Crott Make Gin node edit form available for all content entities