Grid as footer of entities card

I have a entities card

type or paste code heretype: entities
entities:
  - entity: group.group_sfeerverlichting
title: Sfeerverlichting
footer:
  type: buttons
  entities: []

And I have a grid with custom buttons cards

type: grid
cards:
  - type: custom:button-card
    entity: switch.sfeerverlichting_dressoir
    color: grey
    show_state: false
    name: Sfeer dressoir
    icon: mdi:power
    state:
      - value: 'on'
        color: lawngreen
      - value: 'off'
        color: white
  - type: custom:button-card
    entity: switch.sfeerverlichting_links
    color: grey
    show_state: false
    name: Sfeer links
    icon: mdi:power
    state:
      - value: 'on'
        color: lawngreen
      - value: 'off'
        color: white
  - type: custom:button-card
    entity: switch.sfeerverlichting_rechts
    color: grey
    show_state: false
    name: Sfeer rechts
    icon: mdi:power
    state:
      - value: 'on'
        color: lawngreen
      - value: 'off'
        color: white

How can I put the grid as a footer of the entities card ?

If you are using on top of the two cards: “type: vertical-stack”, the two cards will be above each other… Is that what you are looking for ?

1 Like

Thank you Didier !