UI label stands for an another UI label

Hi all, I have a problem with two UI labels. See the picture please:

You see the “Level 1” label stays instand for the “Menu” label, but I want that the “Level 1” label stays behind the “menu” label.

Can you guys help me with this problem?

Thanks! (Btw I’m sorry for my English, and I do Unity now for 3 months, so i’m not a pro (; ).

have you try to change the child order of the images?

Thanks for your reaction, but i have made the “level” label in a script, and the “menu” label with unity ui editor.

Script:

    public GameObject pauseButton, pausepanel;


   
    public void OnPause() {
        pausepanel.SetActive (true);
        pauseButton.SetActive (false);
        Time.timeScale =  0.0001f;
   

    }
   
    public void OnUnPause () {
        Time.timeScale = 1;
        pausepanel.SetActive (false);
        pauseButton.SetActive (true);
    }