Horizontal-stack

Maybe iam missing something but i cant get this to work any more.
what do i do wrong?

title: Coimbra
views:
  - badges:
      - binary_sensor.updater
      - person.makkeleon
      - device_tracker.devicename
      - device_tracker.makkeleon
      - device_tracker.cristine
      - device_tracker.lenovo
      - device_tracker.b8_27_eb_b4_30_05
      - device_tracker.24_0a_c4_ba_f2_f4
      - device_tracker.ee_94_f6_0d_b8_9d
      - device_tracker.ec_fa_bc_38_e2_c4
      - device_tracker.ec_fa_bc_39_69_c8
      - device_tracker.ac_9e_17_8e_4a_48
      - device_tracker.30_b5_c2_12_af_3f
      - device_tracker.84_f3_eb_e0_7b_a9
      - device_tracker.cc_50_e3_27_1e_89
      - device_tracker.ec_fa_bc_38_f0_66
      - device_tracker.84_f3_eb_e0_77_a0
      - device_tracker.30_ae_a4_d8_04_18
      - sensor.yr_symbol
      - sun.sun
    cards:
      - entities:
          - entity: switch.garage_light
          - entity: light.keuken_cam_light
          - entity: switch.printer_switch
          - entity: switch.kachel_aan
          - entity: switch.kachel_uit
          - entity: binary_sensor.pir_sensor
          - entity: switch.keuken_cam_restart
          - entity: sensor.tempwater
          - entity: sensor.tempkachel
          - entity: sensor.tempkamer
          - entity: sensor.temprook
        show_header_toggle: false
        title: Garagem
        type: entities
      - entity: camera.keuken_cam
        type: picture-entity
      - entities:
          - switch.slaapkamer_light
          - switch.slaapkamer_ventilator
        show_header_toggle: false
        title: Quarto
        type: entities
      - entities:
          - entity: switch.sala_light
          - entity: switch.woonkamer_camera_restart
          - entity: light.voordeur_cam_light
          - entity: switch.voordeur_cam_restart
          - entity: binary_sensor.interruptor_ao_lado_da_porta_da_frente
          - entity: binary_sensor.luz_sala_on
          - entity: binary_sensor.woonkamer_camera_button
          - entity: binary_sensor.woonkamer_camera_pir
        show_header_toggle: false
        title: Sala
        type: entities
      - entity: camera.woonkamer_camera
        type: picture-entity
      - entity: camera.voordeur_cam
        type: picture-entity
      - entities:
          - entity: automation.turn_on_garage_licht_when_there_is_movement
          - entity: automation.turn_off_garage_licht_10_minutes_after_last_movement
          - entity: automation.turn_on_woonkamer_licht_when_there_is_movement
          - entity: automation.turn_off_woonkamer_licht_10_minutes_after_last_movement
          - entity: automation.makkeleon_home
          - entity: automation.makkeleon_weg
          - entity: automation.cris_home
          - entity: automation.cris_weg
          - entity: automation.notification_garage
          - entity: automation.automatic_theme_change
          - entity: automation.ha_boot
          - entity: automation.ha_boot_2
        show_header_toggle: false
        title: Automation
        type: entities
      - entity: camera.combined
        type: picture-entity
      - entity: media_player.mpd
        type: media-control
      - entity: media_player.3119a1c2_af86a9a5
        type: media-control
      - entity: weather.casa_salgueirosa
        type: weather-forecast

  - type: horizontal-stack         :blush: 
    cards:
      - type: gauge
        entity: sensor.tempwater
        min: 0
        max: 100
        theme: Backend-selected
        severity: null
        green: 0
        yellow: 0
        red: 0
      - type: gauge
        entity: sensor.tempkachel
        min: 0
        max: 100
        theme: default
      - type: gauge
        entity: sensor.tempkamer
        min: 0
        max: 100
        theme: default
      - type: gauge
        entity: sensor.temprook
        min: 0
        max: 100
        theme: default
        path: default_view
        title: Home

Indentation appears to be wrong. Needs to be in line with your other cards

I dont understand what you mean whit that

Your horizontal stack should have the same indentations as all your other cards above it.

Bad:

    - entity: weather.casa_salgueirosa
      type: weather-forecast

- type: horizontal-stack
  cards:

Good:

  - entity: weather.casa_salgueirosa
    type: weather-forecast

  - type: horizontal-stack         :blush: 
    cards:
1 Like

if i do it like that i got a extra card that looks like this.

Card config incorrect
{
  "type": "horizontal-stack",
  "cards": null
}
      - entity: weather.casa_salgueirosa
        type: weather-forecast
        
      - type: horizontal-stack
        cards: null
      - type: gauge
        entity: sensor.tempwater
        min: 0
        max: 140
        theme: Backend-selected
      - type: gauge

you also need to tab over the cards within the horiz stack

      - entity: weather.casa_salgueirosa
        type: weather-forecast
        
      - type: horizontal-stack
        cards: 
        - type: gauge
          entity: sensor.tempwater
          min: 0
          max: 140
          theme: Backend-selected
        - type: gauge
1 Like

That did the trick mny thanks
´
crazy_face:

´