How would I be able to multiple fonts into a widget?
I found out this may work.
b=Button(frame, text="Big bold text\n" "Small text")
I have tried many things however i can't get my code to work. Simply put, I want a big bold text and a small text underneath each other.
Thanks for any help and advice.
Neither the Tk button widget nor the ttk button widget support the use of multiple fonts for the text element. However, you can construct something using the Canvas widget to get two separate text elements within a single widget. This answer about making vertical text buttons provides a similar example that would be a good starting point.