Using lower case in the headerTitle text #210
-
Does anyone know how can I make the text in the headerTitle use lower case ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
If you look at the css file you'll find the following css rules: .jsPanel-titlebar .jsPanel-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-variant: small-caps;
font-weight: normal;
margin: 0 5px 0 8px;
min-width: 0;
} The one you want to change is So just add some css to your own style sheet like... .jsPanel-titlebar .jsPanel-title {
font-variant: normal;
} ...in order to overwrite the default style for all your panels. |
Beta Was this translation helpful? Give feedback.
-
Thanks! |
Beta Was this translation helpful? Give feedback.
If you look at the css file you'll find the following css rules:
The one you want to change is
font-variant: small-caps;
So just add some css to your own style sheet like...
...in order to overwrite the default style for all your panels.
Make sure you load your css after the jsPanel css.