Change font size of Title - Plotly Card

I need help understanding what to do…

I have a Plotly Custom Card. It has a title.
I want to change the font Size (color too etc).
I have identified in the web console the element… but I don’t know how to “translate” it to HA (see pics below)

I tried something like

type: custom:plotly-graph
entities:
...

title: Car charges
style: |
  ha-card {
      .title {
        font-size: 18
      }
  }

But of course is not working…

Appreciate an hint!!!


Pictures

Please try this. Card Mod made a change in 3.40 and requires this.

You also needed a px after font-size to designate the height.

card_mod:
 style: |
   ha-card {
type: custom:plotly-graph
entities:
  - entity: sun.sun
hours_to_show: 24
refresh_interval: 10
title: test
card_mod:
  style: |
       ha-card {
          font-size: 30px !important;
          }

Many thanks!!!
yes! thats the answer! :slight_smile:

thank you.

yes sir! if you have issue just post your updated code