Widget Alighnment help

How do I get these widgets to align vertically please I’m a little stuck

This is the code any help appreciated thanks
PS tried rows: 20 but didn’t help

title: Weather
widget_dimensions: [110, 110]
widget_size: [1, 1]
widget_margins: [5, 5]
columns: 5
layout:
  - load_main_panel(1x1),label(4x1)
  - weather (5x2)
  - iframe (5x7)
label:
  widget_type: label
  text: Weather
load_main_panel:
  widget_type: navigate
  icon_inactive: mdi-home-assistant  
  title: Home
  url: /home 
weather:
  widget_type: weather
  title: Weather Today
  show_forecast: 1
  prefer_icons: 1
  forecast_title: Tomorrow
  sensors:
    icon: sensor.openweathermap_condition
    temperature: sensor.openweathermap_temperature
    apparent_temperature: sensor.deck_temperature
    humidity: sensor.openweathermap_humidity
    precip_intensity: sensor.openweathermap_forecast_condition
    pressure: sensor.openweathermap_pressure
    wind_speed: sensor.openweathermap_wind_speed
    wind_bearing: sensor.openweathermap_wind_bearing
    forecast_icon: sensor.openweathermap_forecast_condition
    forecast_temperature_min: sensor.openweathermap_forecast_temperature_low
    forecast_temperature_max: sensor.openweathermap_forecast_temperature
    forecast_precip_probability: sensor.openweathermap_forecast_condition
    forecast_precip_type: sensor.openweathermap_forecast_condition 
iframe:
    widget_type: iframe
    title: Radar
    refresh: 60
    url_list:
      - http://www.bom.gov.au/products/IDR663.loop.shtml

Add emtpy lines beneath the weather widget:

layout:
  - load_main_panel(1x1),label(4x1)
  - weather (5x2)
  - # Leave empty lines if the above widget spans more than one row.
  - iframe (5x7)
1 Like

OK now i get it thanks been trying to get that one sorted and couldn’t see in the docs :grinning:
Thanks