Change color of subtitle inline

Hello everyone,

I would like to change the color of the subtitle in the inline.

It’s possible ??

Thanks in advance, regards!
Captura de pantalla 2022-11-02 132849

Yes, but you need to very intimate with CSS, it is not easy. I attempted something similar a few months back but gave up.

Basically run the app in a browser (chrome), go to dev tools (F12) and see what HTML DIV tags are being used [elements] for the specific text you want to change
Then you need to add in a RICH TEXT component and add in CSS code to change the colour of that DIV tag

Not sure is there is another way of doing it

Thank you Dan, the problem is that the element item-list-subtitle only change his properties on design screen. I think that i don’t select the element correctly.

Thanks !!!

Hi @Dan_San , here is the code, thanks so much !!



[data-test="tile-item"] .tile-text-container .tile-title{ 
font-family: Poppins, BlinkMacSystemFont, Roboto, sans-serif;
font-size:13px;
font-weight:bold;
} 

[data-test="tile-item"] .tile-text-container .tile-subtitle { 
font-family: Poppins, BlinkMacSystemFont, Roboto, sans-serif;
font-size:10px;
color:green;
}