Skip to main content

Can anyone please provide an example of a Custom Class Name to format a font (size, etc.) in a grid view ?

Hey ​@dwill123 

Yes, here's an example of a custom CSS class that can be used to format fonts in a grid view:

```
.field-name {
    color: #CA1650 !important;
    font-family: cursive;
    font-size: 15px !important;
}
```

This CSS class demonstrates how to:
- Set a specific text color using a hex color code (#CA1650)
- Define a font family (cursive in this case)
- Set the font size (15px)

The !important declaration ensures these styles take precedence over other potentially conflicting styles.
 

For more information and Custom CSS Examples, the below article might help:

Settings - Profiles - Custom CSS Examples

 


Reply