i am having problems creating multiple frames and getting them in the right place. i want to put 4 frames on my display so i can have a display like the first attachments but this its not working and the 2 frame is going straight to the middle when i say column 0 and frame 3 disappears because frame 2 is in the way. frame 1 and 4 seem to be working fine just having problem with frame 2 and 3. here my code, hope someone can put me in the right direction as this is my first time creating a gui in python.
from Tkinter import *
root = Tk()
root.title("Malware Scanner")
root.geometry("600x400")
root.configure(background='#BDBDBD')
titleWidget = Frame(root, width = 600, height = 60, bd=1, bg='#BDBDBD', relief=SUNKEN)
titleWidget.grid_propagate(False)
buttonWidget = Frame(root, width = 100, height = 200, bd=1, bg='#BDBDBD', relief=SUNKEN)
labelWidget = Frame(root, width = 200, height = 250, bd=1, bg='#BDBDBD', relief=SUNKEN)
label2Widget = Frame(root, width = 600, height = 90, bd=1, bg='#BDBDBD', relief=SUNKEN)
titleWidget.grid(row = 0, column = 0)
labelWidget.grid(row = 1, column = 0)
label2Widget.grid(row = 2, column = 0)
buttonWidget.grid(row = 1, column = 1)
root.mainloop()