[SOLVED] Weather Frame - Displaying additional item underneath temperature group

Hi,

Got simple question so need little help,sorry.
Currently on my home page I display weather frame with temperarure,pressure,humidity and so on. This looks like this at the moment.

W1

I want to add another item underneath “Outside Temperature” but without any subgroup as there will be nothing inside. The item is called “Condition”

W2

My code looks like this.

}
    Frame label="Weather" {
        Text item=Weather_Temperature valuecolor=[Weather_LastUpdate=="Uninitialized"="lightgray",Weather_LastUpdate>90="lightgray",>25="orange",>15="green",>5="orange",<=5="blue"] 
        Text item=Condition {
		    Frame {
                Text item=Weather_Temp_Max valuecolor=[>25="orange",>15="green",>5="orange",<=5="blue"]
                Text item=Weather_Temp_Min valuecolor=[>25="orange",>15="green",>5="orange",<=5="blue"]
                Text item=Weather_Humidity
                Text item=Weather_Pressure
				Text item=Condition
				Text item=Wind_Speed
				Text item=Rain
				Text item=ObservationTime
                Text item=Weather_LastUpdate visibility=[Weather_LastUpdate>30] valuecolor=[Weather_LastUpdate>120="orange", Weather_LastUpdate>300="red"]
            }

Edit:
Arrow pointing to the right need to be at the line above. How do I change sitemap then.

This is my goal.

W3

Text item=Weather_Temperature valuecolor=[Weather_LastUpdate=="Uninitialized"="lightgray",Weather_LastUpdate>90="lightgray",>25="orange",>15="green",>5="orange",<=5="blue"] 
         {
		    Frame {
                Text item=Weather_Temp_Max valuecolor=[>25="orange",>15="green",>5="orange",<=5="blue"]
                Text item=Weather_Temp_Min valuecolor=[>25="orange",>15="green",>5="orange",<=5="blue"]
                Text item=Weather_Humidity
                Text item=Weather_Pressure
				Text item=Condition
				Text item=Wind_Speed
				Text item=Rain
				Text item=ObservationTime
                Text item=Weather_LastUpdate visibility=[Weather_LastUpdate>30] valuecolor=[Weather_LastUpdate>120="orange", Weather_LastUpdate>300="red"]
            }
     }
    Text item=Condition

Thanks. Tried that but its complaining in log about missing frame. Sorry should include the remaining frame for the switch in my post above to show you everything.

Frame label="Weather" {
        Text item=Weather_Temperature valuecolor=[Weather_LastUpdate=="Uninitialized"="lightgray",Weather_LastUpdate>90="lightgray",>25="orange",>15="green",>5="orange",<=5="blue"] 
        {
		    Frame {
                Text item=Weather_Temp_Max valuecolor=[>25="orange",>15="green",>5="orange",<=5="blue"]
                Text item=Weather_Temp_Min valuecolor=[>25="orange",>15="green",>5="orange",<=5="blue"]
                Text item=Weather_Humidity
                Text item=Weather_Pressure
				Text item=Condition
				Text item=Wind_Speed
				Text item=Rain
				Text item=ObservationTime
                Text item=Weather_LastUpdate visibility=[Weather_LastUpdate>30] valuecolor=[Weather_LastUpdate>120="orange", Weather_LastUpdate>300="red"]
            }
     }
    Text item=Condition
		    }
			Frame {
                Switch item=Weather_Chart_Period label="Chart Period" mappings=[0="Hour", 1="Day", 2="Week"]
                Chart item=Weather_Chart period=h refresh=6000 visibility=[Weather_Chart_Period==0, Weather_Chart_Period=="Uninitialized"]
                Chart item=Weather_Chart period=D refresh=30000 visibility=[Weather_Chart_Period==1]
                Chart item=Weather_Chart period=W refresh=30000 visibility=[Weather_Chart_Period==2]
            }
        }
    }

Odd number of { } brackets, you just have to pair them