I feel i’ve been staring at this configuration for too long and need a fresh pair of eyes. I’m unsure why but this view refuses to render in anything other than a single vertical stack. Even changing the vertical stack card to the horizontal stack card results in all cards in this view being condensed into a single centered column on the page (see image below).
Can anyone see where I went wrong? Thanks in advance for your inputs.
#########################################################################################
resources:
- url: /local/card-tools.js
type: js
- url: /local/slider-entity-row.js?v=d6da75
type: js
- url: /local/fold-entity-row.js?v=f28e6e
type: js
- url: /local/thermostat-card.js?v=0.1.1
type: module
- url: /local/plan-coordinates.js?v=0.1.0
type: js
- url: /local/custom-fan-card.js?v=0
type: module
- url: /local/layout-card.js?v=bd7e5a
type: js
- url: /local/button-card.js?v=0.0.3
type: module
- url: /local/tracker-card.js?v=0.1.5
type: js
- url: /local/card-modder.js?v=35eb37
type: js
- url: /local/custom-lovelace/compact-custom-header/compact-custom-header.js?v0
type: js
#########################################################################################
title: Welcome Home
views:
- title: Home
icon: mdi:home
cards:
- type: vertical-stack
cards:
- type: weather-forecast
entity: weather.yweather
- type: custom:thermostat-card
title: Nest
entity: climate.hallway
- type: custom:tracker-card
trackers:
- sensor.custom_card_tracker
- sensor.custom_component_tracker
- type: entities
title: Great Room Lights
show_header_toggle: false
entities:
- type: custom:slider-entity-row
entity: light.great_room
- type: section
- type: custom:slider-entity-row
entity: light.kitchen_dimmer
- type: custom:slider-entity-row
entity: light.dining_room
- type: entities
title: Doors
show_header_toggle: false
entities:
- binary_sensor.front_door
- binary_sensor.garage_side_door
- binary_sensor.laundry_room_door
- binary_sensor.sliding_glass_door
- type: entities
title: Front Outdoor Lights
show_header_toggle: false
entities:
- switch.exterior_driveway
- switch.exterior_entry
- type: entities
title: Ceiling Fans
show_header_toggle: false
entities:
- entity: fan.master_bedroom_fan
type: custom:custom-fan-card
name: Master Bedroom Fan
- entity: fan.office_fan
type: custom:custom-fan-card
name: Office
- entity: fan.living_room_fan
type: custom:custom-fan-card
name: Living Room
- entity: fan.daniels_fan
type: custom:custom-fan-card
name: Daniel's Bedroom
- type: custom:compact-custom-header
notification: false
voice: false
options: true
menu: true
user_agent: Mobile
Below is the result of changing - type: vertical-stack
to `- type: horizontal-stack’.
In addition to the above mentioned stack change, I’ve also tried removing several of the cards and reordering cards to no avail.