Skip to main content
Question

Custom Class Name example in Grid view / font

  • December 3, 2024
  • 1 reply
  • 22 views

Forum|alt.badge.img+1

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

This topic has been closed for replies.

1 reply

Sai Sravan
Planview Falcons
Forum|alt.badge.img+1
  • Planview Falcons
  • May 14, 2025

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