Code: Select all
fr = Frame(root, width=width / 2, height=height / 2, background='black')
self.headline_label = Label(fr, textvariable=self.headline, background='black', foreground='green', font=("Arial", 40))
self.stats_label = Label(fr, textvariable=self.stats, background='black', foreground='green', font=("Arial", 25))
self.headline_label.place(anchor=CENTER, relx=0.5, rely=0.3)
self.stats_label.place(anchor=CENTER, relx=0.5, rely=0.6)
column = int(position / 2)
fr.grid(column=column, row=position % 2)
The problem is both the headline and the status label are the same size. I'm not sure either are the correct size. I have attempted to change the font sizes and the font name ("Mono", "Liberation", "LiberationMono-Regular") but it stays the same. I'm not picky about what font is used, it just need to be big enough to see from a few feet away.