how can i change font size in Label ???

Thanks Joacim and sorry for the late answer. I have also a other second project which has claimed my time …

I use a chameleon based theme.

But I think the problem with the font size is another. The generated HTML code is:

[code]

Hello Vaadin!
[/code]The style class (v-label-)dfFontTitle is defined by me. In this style class I try to set the font size for this label.

/* Zeile 107 */ .dfFontTitle { ... ... font-size: 150%; } But the problem is, that in “v-widget” the font size will be overridden with the default font size of the theme.

/* Zeile 324 */
.docFlow .v-widget {
  text-align: left;
  display: inline-block;
  white-space: normal;
  vertical-align: bottom;
  font-size: 13px;
  line-height: 1.4;
}