Adjust title size only

Hi there,

another question about sizing - In one of my tab panel I want to change the font size of the orange colored text only. If I now change the font size it will change the size of all fonts within this panel.

This is surely a pretty basic coding to do but would be nice if you could help me achieving that :slight_smile:

As said in the other thread, the tab navigation buttons can only be customized from the tab’s parent css.

Hi,

Here I mean the orange text “Flute 8va BWW” and not the tab. I just want to make that orange text bigger but don’t know how to do it without changing the font size over all in this panel.

Sorry I overlooked it. The content inserted with the html property is wrapped in a div with the “html” class, you can target it with the css selector “.html”:

> .html {
  /* style applied only on the direct descendent of the widget element with class "html" */ 
}

Thanks a lot! I will try that :slight_smile: :+1:

And here as well - thank you. It works great!