# Meta / Emphasis Text Change?

**URL:** https://community.glideapps.com/t/meta-emphasis-text-change/79841
**Category:** Ask for Help
**Created:** [February 6, 2025, 3:14pm UTC](https://community.glideapps.com/t/meta-emphasis-text-change/79841 "2025-02-06T15:14:12Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Michelle\_Pointer1](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/michelle_pointer1/32/83637_2.png) [@Michelle\_Pointer1](https://community.glideapps.com/u/Michelle_Pointer1)
#### Post date: [February 6, 2025, 3:14pm UTC](https://community.glideapps.com/t/meta-emphasis-text-change/79841/1 "2025-02-06T15:14:12Z")

</div>

I’ve googled and searched the community and I’ve figured out how to change most of the text I want except the Meta / Emphasis text. Honestly, it’s too small to read and is placed in an obnoxious place in my card view, but I prefer this view. Can someone tell me easily how to change that in CSS?

---

<div class="post-metadata">

### Author: ![Mariusz](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/mariusz/32/89415_2.png) [@Mariusz](https://community.glideapps.com/u/Mariusz)
#### Post date: [February 6, 2025, 5:14pm UTC](https://community.glideapps.com/t/meta-emphasis-text-change/79841/2 "2025-02-06T17:14:45Z")

</div>

For me, the easiest way is to do it via inspector. Here’s how I found this in the Title component. But many of these classes with random letter names are not stable, which means your design can fall apart if you change the theme color. So, make sure you’ll stick to your main app color before you start changing CSS like this.

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/2/7/27a6fffe1edc56072e3b5d5e5960e377ed0dae37.png)

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [February 7, 2025, 12:48am UTC](https://community.glideapps.com/t/meta-emphasis-text-change/79841/3 "2025-02-07T00:48:04Z")

</div>

```auto
h3[class*="metaText"] {
font-size: 1rem !important;
}

```

You can find the stable part of it and then apply class\*, just be careful it might change stuff in other components as well if they have the same part in their class names.

![CleanShot 2025-02-07 at 07.47.40](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/2/5/2589c55893b977f0fc5ed1d87e3b35e098112de4.png)
