Change the font size of the title of metrics in FreedomUi
Hi Community,
I want to change the font size of the title of the metric chart in freedom Ui. I created a custom css file. Iam using "indicator-widget-title" class to change the fontsize. But its not changing.
I tried to change the color of the title, it's changing. Font-size alone is not changing.
Css code i used.
Can anyone tell me how to change the font size.
Thank you in advance.
Regards,
Manideep Korni
Like
I believe the style for those are in style blocks that get added to the page after the CSS is loaded. It will work if you add !important to the styles.
.indicator-widget-title { font-size: 25px !important; }
Ryan
I believe the style for those are in style blocks that get added to the page after the CSS is loaded. It will work if you add !important to the styles.
.indicator-widget-title { font-size: 25px !important; }
Ryan
Thanks Ryan Farley
It's worked.
Regards,
Manideep Korni.