Blank row in entities card

Hello,

I use the entities card to show entities in 3 different columns. The entities in the same row represent the same value and sometimes in a row i need to skip a value because it not exists. I would like to add an emtpy row entity so the alignments of the rows keep the same. How can this be done?

  - type: custom:layout-card
    column-with: 100%
    layout: vertical
    max_columns: 3
    cards:
      - type: entities
        entities:
          - entity: sensor.value1-1
          - entity: sensor.value1-2
          - entity: sensor.value1-3
      - break
      - type: entities
        entities:
          - entity: sensor.value2-1
          - entity: sensor.does_not_exist_so_should_show_an_empty_line_with_height_of_other_x-2_entities.
          - entity: sensor.value2-3
      - break
      - type: entities
        entities:
          - entity: sensor.value3-1
          - entity: sensor.value3-2
          - entity: sensor.value3-3
2 Likes

Have you ever found a solution for that? I need that right now as well.

Add a row with ANY sensor and make it transparent with card-mod + define empty “tap_action”:

- entity: sun.sun
  icon: mdi:blank
  tap-action:
    action: none
  card_mod:
    style: |
      :host { color: transparent; }

Or use custom:template-entity-row card instead with empty name, state & blank icon.