Vertical Stack In Card configuration

I just edited my card, and buttons in bottom went all vertical, they used to be horizontal. How do i get them back ?

I duplicated the one with horizontal buttons and it immediately did the same.

Here is code as requested :

type: custom:vertical-stack-in-card
cards:
  - show_state: false
    show_name: false
    camera_view: auto
    fit_mode: cover
    type: picture-entity
    entity: camera.backyard_sd_stream
    tap_action:
      action: more-info
    hold_action:
      action: none
    camera_image: camera.backyard_sd_stream
  - type: custom:vertical-stack-in-card
    cards:
      - type: tile
        name: Privacy
        tap_action:
          action: toggle
        entity: switch.backyard_privacy
        features_position: bottom
        vertical: false
      - type: tile
        name: Motion
        entity: select.backyard_motion_detection
        features_position: bottom
        vertical: false
        tap_action:
          action: more-info
      - type: tile
        name: Movement
        tap_action:
          action: more-info
        entity: binary_sensor.backyard_cell_motion_detection
        features_position: bottom
        vertical: false
        hide_state: true
        show_entity_picture: false

Please post your current card code

Edited it in the first post, all done via graphic interface.

Add horizontal: true

type: custom:vertical-stack-in-card
cards:
  - show_state: false
    show_name: false
    camera_view: auto
    fit_mode: cover
    type: picture-entity
    entity: camera.backyard_sd_stream
    tap_action:
      action: more-info
    hold_action:
      action: none
    camera_image: camera.backyard_sd_stream
  - type: custom:vertical-stack-in-card
    horizontal: true
    cards:

Nothing changed :confused:

EDIT: Ah okay, needed to add it once before cards (tried to replace all vertical:false’s first):

   hold_action:
      action: none
    camera_image: camera.backyard_sd_stream
  - type: custom:vertical-stack-in-card
    horizontal: true
    cards:
      - type: tile
        name: Privacy
        tap_action:
          action: toggle
        entity: switch.backyard_privacy
        features_position: bottom
        vertical: false
      - type: tile
        name: Motion
        entity: select.backyard_motion_detection
        features_position: bottom
        vertical: false

vertical:false is for the tile card, horizontal: true is for the type: custom:vertical-stack-in-card

yes i see it now :slight_smile: I was too hasty to read your post, sry :slight_smile:

No worries, happy to assist!

1 Like