I am creating a To - Do List In Python, and I have to arrange 3 elements as I start. These include a Notebook in order to flip through notes and to - dos. The others are just labels with images on them. Here is the code. My question is that I'm not sure how I am supposed to go about putting these images on the grid. The Notebook, which is located Row 1, Column 0, is very large and causes the column 2 to shift all the way right, which gets rid of the ability to put two items in two columns close to each other in row 1. Here is the code.
from tkinter import *
import datetime
from tkinter import ttk
import tkinter as tk
from tkinter.scrolledtext import ScrolledText
root = Tk()
root.title("To - Do List")
root.geometry("1200x600")
root.configure(background = "white")
# Variable list:
content = ttk.Frame(root)
content.grid(column=0, row=0, sticky=(N, S, E, W))
Photo1= PhotoImage(file="Full Circle Image Icon Docs.png")
Photo2 = PhotoImage(file="To - Do List Label.png")
TasksList = ttk.Notebook()
Task1 = ttk.Frame(TasksList)
Task2 = ttk.Frame(TasksList)
TasksList.add(Task1, text = 'One')
TasksList.add(Task2, text = 'Two')
TasksList.grid(row=2, column=0, sticky=W)
root.columnconfigure(0, weight=0)
root.rowconfigure(0, weight=0)
Label(image=Photo1, bg="black", borderwidth=0, highlightthickness=0).grid(row=0, column=0, sticky=W)
Label(image=Photo2, borderwidth=0, highlightthickness=0).grid(row=0, column=1, sticky=W)
root.mainloop()
Help would be greatly appreciated. Thanks a lot guys!