-
|
Is there an option to remove the italics from the status panel text? |
Beta Was this translation helpful? Give feedback.
Answered by
cookesan
Apr 23, 2026
Replies: 1 comment
-
|
There does not appear to be a theme option for it, but it is just one CSS rule. The status panel label is made italic here: #statuspanel #statuspanel-label {
font-style: italic !important;
}Add this after the theme CSS, for example near the end of your #statuspanel #statuspanel-label {
font-style: normal !important;
}If you edit the theme files directly, the rule is in |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
qmatic0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There does not appear to be a theme option for it, but it is just one CSS rule.
The status panel label is made italic here:
Add this after the theme CSS, for example near the end of your
userChrome.css:If you edit the theme files directly, the rule is in
theme/ffu-internal-appearance.css, but an override inuserChrome.cssis easier to keep across updates.