Thunderbird 102.0 messed up my userchrome how to fix please?

User Help for Mozilla Thunderbird
Post Reply
max2
Posts: 278
Joined: September 17th, 2011, 5:37 pm

Thunderbird 102.0 messed up my userchrome how to fix please?

Post by max2 »

I hid the all three buttons at the far top right hand side. How can I do it again in Thunderbird 102.0 please ?

I do it so I don't accidentally close it.
User avatar
tanstaafl
Moderator
Posts: 49647
Joined: July 30th, 2003, 5:06 pm

Re: Thunderbird 102.0 messed up my userchrome how to fix ple

Post by tanstaafl »

I suggest you post a copy of your userChrome.css file and state what version of Thunderbird it last worked correctly with. I assume you're trying to hide the menu button (looks like a stack of three hamburgers), not the minimize, maximize and close window buttons. Please be more precise.

https://support.mozilla.org/en-US/questions/1230799 describes how it used to be done three years ago. Did you change toolkit.legacyUserProfileCustomizations.stylesheets to true in the config editor? If not, userChrome.css will be ignored. That restriction was added around version 69.
lenny2
Posts: 68
Joined: June 8th, 2022, 3:10 am

Re: Thunderbird 102.0 messed up my userchrome how to fix ple

Post by lenny2 »

max2 wrote:I hid the all three buttons at the far top right hand side. How can I do it again in Thunderbird 102.0 please ?
Try this code

Code: Select all

/* userChrome.css Tweak Thunderbird */
/* Hide three Buttons */
.titlebar-button.titlebar-min,
.titlebar-button.titlebar-max,
.titlebar-button.titlebar-close,
.titlebar-restore {
    display: none !important;
}
max2
Posts: 278
Joined: September 17th, 2011, 5:37 pm

Re: Thunderbird 102.0 messed up my userchrome how to fix ple

Post by max2 »

lenny2 wrote:
max2 wrote:I hid the all three buttons at the far top right hand side. How can I do it again in Thunderbird 102.0 please ?
Try this code

Code: Select all

/* userChrome.css Tweak Thunderbird */
/* Hide three Buttons */
.titlebar-button.titlebar-min,
.titlebar-button.titlebar-max,
.titlebar-button.titlebar-close,
.titlebar-restore {
    display: none !important;
}
Thanks works great!
Post Reply