Why whole group is not in one line?

My config:

  menu_heat_cool:
    view: yes
    name: ogrevanje & hlajenje
    control: hidden
    entities:
      - group.mqtt_hallway_climate

  mqtt_hallway_climate:
    name: klima hodnik
    control: hidden
    entities:
      - climate.melcloud_hodnik_klima_120984
      - sensor.mqtt_hallway_climate_today
      - sensor.mqtt_hallway_climate_yesterday
      - sensor.mqtt_hallway_climate_total
      - switch.sonoff_pow_02
      - sensor.mqtt_hallway_climate_sensor_tem_outside_unite
      - sensor.mqtt_hallway_climate_sensor_hum_outside_unite

Could you please rephrase your question with a bit more detail?

I’m not certain what you are asking.

Hi @tom_l

I asked why all items in the group not in one line?

Like this:

It looks like you have configured the group’s as if you are using the old states ui.

Is that correct or are you using Lovelace as the ui?

Yes I am using Lovelace.

Then use a vertical stack card to group an entities card and a climate card.

Since you are using lovelace the the first group where you defined it as a view has absolutely no use. You can delete it.

And you can also probably delete the second group too since it isn’t being used anywhere.

then use the cards that @tom_l suggested above to group you entities together as you want.

Hi @finity, can you show me an example base on my configuration.

something like this maybe:

- type: vertical-stack
    cards:
    - type: thermostat
      name: klima hodnik
      entities:
        - climate.melcloud_hodnik_klima_120984
    - type: entities
      entities:
        - sensor.mqtt_hallway_climate_today
        - sensor.mqtt_hallway_climate_yesterday
        - sensor.mqtt_hallway_climate_total
        - switch.sonoff_pow_02
        - sensor.mqtt_hallway_climate_sensor_tem_outside_unite
        - sensor.mqtt_hallway_climate_sensor_hum_outside_unite

Ok, in lovelace is better to use cards not group for organization?

Why I can use vertical and horizontal stack card?

my configuration;

  - title: Hlajenje & Ogrevanje
    path: heat_cool
    type: vertical-stack
    cards:
      - type: thermostat
        name: klima hodnik
        entity: climate.melcloud_hodnik_klima_120984
      - type: entities
        entities:
          - sensor.mqtt_hallway_climate_today
          - sensor.mqtt_hallway_climate_yesterday
          - sensor.mqtt_hallway_climate_total
          - switch.sonoff_pow_02
          - sensor.mqtt_hallway_climate_sensor_tem_outside_unite
          - sensor.mqtt_hallway_climate_sensor_hum_outside_unite
      - type: horizontal-stack
        cards:
          - type: gauge
            entity: sensor.mqtt_hallway_climate_sensor_tem_outside_unite
            min: -50
            max: +50
            severity:
              green: -50
              yellow: 24
              red: 35

          - type: gauge
            entity: sensor.mqtt_hallway_climate_sensor_hum_outside_unite
            severity:
              green: 0
              yellow: 30
              red: 45

I would like to have like this:

This probably related to web page height? If this is a problem how to prevent cards to auto move to new column on page height change?