I have tried using both separately and they work, but when I combine them under the same variable neither of them work. Is there a method of combining them both together? Here is the bit of my code which I am talking about:
sideTab = ttk.Style(screen)
sideTab.configure("tab.TNotebook", tabposition='wn')
tabColour = ttk.Style(screen)
tabColour.configure("colour.TNotebook", background="black")
newStyle = ("tab.TNotebook", "colour.TNotebook")
tabList = ttk.Notebook(screen, style=newStyle)
This code wouldn't change the style as both are being used in the 'style' Does anyone have any ideas how I could get them both to work?