Multiline secondary - Make a next line

Hello everyone,

Not going to lie i normaly never post anything on forums but i was hoping someone could help me with this. I’m trying to start a new line using templating but i can’t get it to work. I’m using a custom HACS card named custom:mushroom-template-card. In this card i have the setting to turn on and off Multiline secondary. Does someone now how to start en new line so that i can add info right below it.

Image of the current look (i want to add text under the Online Status)
image

Settings: (i know that there is static text instead of templating but i removed it when it didnt work.)

Here is the current templating:

{% if is_state('binary_sensor.nebula', 'on') %}
  Online
{% else %}
  Offline {{ states('binary_sensor.nebula') }}.
{% endif %}
1 Like