Expert Card Help

I am new to all the high speed lovelace cards that are out there and I needed some help. I know that only Entity cards will allow you to use “icon” in the title but others do not. What I am trying to do is make a card to list some entities, divide the entities into sections with a title of where they are at (i.e. bedroom, kitchen, etc). Below is an entity card I was able to divide up but can’t get titles in each area. Now it seems to not like the divider statement on these cards but it still works.

entities:
  - type: divider
  - entity: binary_sensor.window_sensor_1
    icon: 'mdi:nintendo-switch'
  - entity: binary_sensor.window_sensor_2
    icon: 'mdi:nintendo-switch'
  - entity: binary_sensor.window_sensor_3
    icon: 'mdi:nintendo-switch'
  - entity: binary_sensor.window_sensor_4
    icon: 'mdi:nintendo-switch'
  - entity: binary_sensor.window_sensor_5
    icon: 'mdi:nintendo-switch'
  - entity: binary_sensor.window_sensor_6
    icon: 'mdi:nintendo-switch'
  - entity: binary_sensor.window_sensor_7
    icon: 'mdi:nintendo-switch'
  - type: divider
  - entity: binary_sensor.window_sensor_8
    icon: 'mdi:nintendo-switch'
  - entity: binary_sensor.window_sensor_9
    icon: 'mdi:nintendo-switch'
  - type: divider
  - entity: binary_sensor.window_sensor_10
    icon: 'mdi:nintendo-switch'
  - entity: binary_sensor.window_sensor_11
    icon: 'mdi:nintendo-switch'
  - type: divider
  - entity: binary_sensor.window_sensor_12
    icon: 'mdi:nintendo-switch'
icon: 'mdi:window-closed-variant'
show_header_toggle: false
title: Window Contact
type: entities

Here’s an example from my code of what I think you’re trying to do.

      # Climate Settings
      - type: entities
        title: Climate
        show_header_toggle: false
        entities:
          - type: section
            label: Heating and Cooling Setpoints
          - entity: input_datetime.climate_mode
            name: Check Climate setting at
          - entity: input_number.setpoint_heat
            name: Heat if Day High below
          - entity: input_number.setpoint_cool
            name: Cool if Day High above
          - type: section
            label: Upstairs Settings
          - entity: input_number.upstairs_heat_day
            name: Heat Day
          - entity: input_number.upstairs_heat_night
            name: Heat Night
          - entity: input_number.upstairs_cool
            name: Cool
          - type: section
            label: Downstairs Settings
          - entity: input_number.downstairs_heat_day
            name: Heat Day
          - entity: input_number.downstairs_heat_night
            name: Heat Night
          - entity: input_number.downstairs_cool
            name: Cool
1 Like