How do I do better than this layout?

I’ve got 5 cameras on this page and they’re all stacked vertically. Can I get 2 rows of 3? 3 rows of 2?

Here’s my setup:

cameras:
  view: yes
  icon: mdi:cctv
  entities:
    - group.all_cameras

and:

all_cameras:
  entities:
    - camera.thomas
    - camera.hall
    - camera.landing
    - camera.drive
    - camera.garden

I’ve tried placing the cameras directly on the view but it doesn’t make a difference.

Unfortunately, cameras and media_players are just stacked. If you want them to be spread out in different rows, create group of groups. See my groups.yaml for example

2 Likes

Bingo! Thanks for that. One entity per group solves my problem for now. Thanks.