Two columns instead of 2 rows? id like to create another section called Kitchen to the right

- title: Lights
  path: lights_path
  type: custom:layout-card
  cards:
    - type: custom:homekit-card
      entities:
        - title: Living Room
          popup:
            type: custom:light-popup-card
            scenesInARow: 4
            brightnessWidth: 130px
            brightnessHeight: 350px
            switchWidth: 110px
            switchHeight: 300px
          entities:
            - entity: light.tv_light_1
            - entity: light.tv_light_2
            - entity: light.living_room_light
            - entity: light.living_room_light_r

this is what i have now, how would i add more row’s like this? https://community-assets.home-assistant.io/original/3X/9/6/96d60b11a11c4c8a9050dafe48d76ca4cd041c09.gif

Create a new card. it should show up on the side…
If it doesn’t, put both card groups under an horizontal stack to have 2 columns

do i need a type?

something like this:

type: horizontal-stack
title: Lights
cards:
    - type: custom:homekit-card
      entities:
        - title: Living Room
          popup:
            type: custom:light-popup-card
            scenesInARow: 4
            brightnessWidth: 130px
            brightnessHeight: 350px
            switchWidth: 110px
            switchHeight: 300px
          entities:
            - entity: light.tv_light_1
            - entity: light.tv_light_2
            - entity: light.living_room_light
            - entity: light.living_room_light_r
    - type: custom:homekit-card
      entities:
        - title: Kitchen
          popup:
            type: custom:light-popup-card
            scenesInARow: 4
            brightnessWidth: 130px
            brightnessHeight: 350px
            switchWidth: 110px
            switchHeight: 300px
          entities:
            - entity: light.tv_light_1
            - entity: light.tv_light_2
            - entity: light.living_room_light
            - entity: light.living_room_light_r

any chance i can make them side by side? i’ll be adding more rooms

that’s kinda the whole point of an horizontal stack… I’m not sure what you’re asking now…

they are on top of each other, thought it would be like a column with the two different groups so that it scrolls verically not horizontally

maybe it’s a limitation linked to the fact that you’re trying to use the custom:homekit-card card
What if you only list 1 entity per group? Do you have 2 columns?