ya, I guess, this is what the vertical-stack-in-card does: https://github.com/custom-cards/vertical-stack-in-card/blob/a4afa205a1a2798e5cf773433b67d33767f111ab/vertical-stack-in-card.js#L139
translates into:
style: |
ha-card {
box-shadow: none;
background: transparent;
border-radius: 0;
margin: 0px;
}
but first have to get the correct style… have another set with auto-entities cards, that can’t be styled in the regular way, and according to https://github.com/thomasloven/lovelace-card-mod#mod-card needs mod-card for each individual auto-entities card in my config, resulting in:
type: vertical-stack
cards:
- type: entities
title: Summary groups
show_header_toggle: false
entities:
- type: custom:fold-entity-row
head:
type: section
label: Family home
entities:
- type: custom:mod-card
style: |
ha-card {
box-shadow: none;
background: transparent;
border-radius: 0;
margin: 0px;
}
card:
type: custom:auto-entities
card:
type: entities
show_header_toggle: false
filter:
include:
- group: 'group.family_home'
options:
secondary_info: last-changed
etc
etc
this however doesn’t change the displayed cards at all… identical to
type: vertical-stack
cards:
- type: entities
title: Summary groups
show_header_toggle: false
entities:
- type: custom:fold-entity-row
head:
type: section
label: Family home
entities:
- type: custom:auto-entities
card:
type: entities
show_header_toggle: false
filter:
include:
- group: 'group.family_home'
options:
secondary_info: last-changed
I know the mod-card is being processed, because made an error before (cards instead of card) and that error out correctly in Red…
so, what am I missing here?
same effect when configured as a big entities card, (vs vertical-stack):
type: entities
title: Summary groups
show_header_toggle: false
entities:
- type: custom:fold-entity-row
head:
type: section
label: Family home
entities:
- type: custom:mod-card
style: |
ha-card {
box-shadow: none;
background: transparent;
border-radius: 0;
margin: 0px;
}
card:
type: custom:auto-entities
card:
type: entities
show_header_toggle: false
filter:
include:
- group: 'group.family_home'
options:
secondary_info: last-changed
Hi @thomasloven please allow me to bother you once more… what am I doing wrong here? How can I mod the auto-entities cards correctly? They now really show as an entity card in an entity-card…

- type: custom:fold-entity-row
head:
type: section
label: Hubs binary pinged
entities:
- type: custom:mod-card
style: |
ha-card {
box-shadow: none;
background: transparent;
border-radius: 0;
margin: 0px;
}
card:
type: custom:auto-entities
card:
type: entities
show_header_toggle: false
filter:
include:
- group: 'group.hubs_binary_pinged'
options:
secondary_info: last-changed