Firefox UI freezes when clicking the addressbar.

I am using Firefox 125 in Windows 11. And this just happens recently. Sometimes, quite frequently, when I click the addressbar wanting to input or select a new address. … (читать ещё)

I am using Firefox 125 in Windows 11. And this just happens recently.

Sometimes, quite frequently, when I click the addressbar wanting to input or select a new address. The Firefox UI freezes (before the dropdown list of addresses is shown). The video/audio/other effects are still working, and from task manager, it does not cost more CPU/mem than usual. But it does not response to key press or mouse action. All I can do (that I know of) is killing the processes. The problem does not seem related to "current" webpage I am browsing. And I have not installed new addons for a few months.

Any idea what should I look into?

Задан Magicloud 10 часов назад

Последний ответ от cor-el 54 минуты назад

Change of primary email adress

My provider has deleted my email account without prior notification. I have no second email adress registered, and also no access to my old email adress. How can I chang… (читать ещё)

My provider has deleted my email account without prior notification. I have no second email adress registered, and also no access to my old email adress.

How can I change my primary email adress now?

Задан martin.rusch 2 часа назад

Последний ответ от cor-el 1 час назад

Issue Loading Certain Parts of Websites

So I noticed an issue with certain websites a few days ago. I was trying to make a hair appointment online, it was asking me to fill in my email, and the box wouldn't let… (читать ещё)

So I noticed an issue with certain websites a few days ago. I was trying to make a hair appointment online, it was asking me to fill in my email, and the box wouldn't let me click on it. I used a different browser, and it worked just fine. Same thing today: I was trying to make a lab appointment, the next step was verifying I'm not a robot, I clicked the box, and it had a loading circle eternally. I tried it on a different browser, and it worked within seconds, no loading. I've never had this issue with Firefox before! I tried clearing my cookies and cache, and that didn't do anything unfortunately. Let me know what I can do to fix this problem! I normally loved Firefox and it's my main browser, so I'm hoping to resolve this issue. Thanks so much!

Задан Elizabeth 2 часа назад

Последний ответ от cor-el 1 час назад

userChrome.css - Help With Customizing Tabs (part 2)

Hi All, I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be ve… (читать ещё)

Hi All,

I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be vertically centered. Right now, the text is dropping too close to the bottom of the tab.

Had this looking very nice in FF 88 with the same code, as you can see in the attached images, but it seems to render differently in FF 115 ESR and FF 125.

Below is some code I used to style the tabs, but the problem exists without this code as well.

I've also included some "tabs on bottom" code I'm using as well at the very bottom.

Would sure like to get those Classic Toolbar Buttons working again too (shown in the second image), but that will be a later request :)

Any help is appreciated.

Thanks!

/* Highlight non-selected tabs on mouseover */ .tabbrowser-tab:not([selected]):hover .tab-content {

  background-color: #dbe3eb !important;

}

  1. TabsToolbar {
 -moz-box-ordinal-group: 3 !important;
 padding-top: 0 !important;
 padding-bottom: 0 !important;
 height: 25px !important;
 background-image: url("bkmr_back.gif") !important;
 border-top: 1px solid #afc0d2 !important;
 border-bottom: 1px solid #8698aa !important;

}

/* Background color of selected tab */ .tab-background[selected="true"] {

   background-attachment: none!important;
   background-image: none!important;
   background-color: #eef5fc !important;

}

/* Background color of non-selected tab */ tab-background:not([selected]) {

   color: #000000 !important;
   background-color: #c7d3e0 !important;

}

/* Border color & bold text for selected tab */

  1. TabsToolbar .tabbrowser-tab[selected] {
   font-weight: 700 !important;
   color: #000 !important;
   border-top: 1px solid #8698aa !important;
   border-left: 1px solid #8698aa !important;
   border-right: 1px solid #8698aa !important;

}

/* Border color & normal text for non-selected tab */

  1. TabsToolbar .tabbrowser-tab:not([selected]) {
   font-weight: 600 !important;
   color: #000 !important;
   border-top: 1px solid #afc0d2 !important;
   border-left: 1px solid #afc0d2 !important;
   border-right: 1px solid #afc0d2 !important;

}

/* -------------- TABS ON BOTTOM --------------- */ /* TABS: below nav-bar - updated for 89+ | 108+ | 113+ */

  • |*:root {
 --tab-toolbar-navbar-overlap: 0px !important;
 --tab-min-height: 25px !important; /* adjust */
 --tab-min-width:  80px !important; /* adjust */

}

  1. navigator-toolbox #TabsToolbar {
 position: absolute !important;
 bottom: 0;
 /* height: 27px !important; */
 height: 28px !important;
 width: 100vw !important;

}

/* navigator-toolbox - padding */

  • |*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
 position: relative !important; /*89+*/
 padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*adjust*/
 background-color: var(--toolbar-bgcolor) !important;

}

/* TABS: HEIGHT */

  1. tabbrowser-tabs,
  2. tabbrowser-arrowscrollbox,
  3. tabbrowser-tabs .tabbrowser-tab {
 min-height: var(--tab-min-height) !important;
 max-height: var(--tab-min-height) !important;

}

.tab-stack {

 height: var(--tab-min-height) !important;

}

  1. TabsToolbar {
 height: var(--tab-min-height) !important;
 margin-bottom: 0px !important;
 /* box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*optional*/
 /* background-color: var(--toolbar-bgcolor) !important; */
 color: var(--toolbar-color) !important;

}

/* drag space */ .titlebar-spacer[type="pre-tabs"], .titlebar-spacer[type="post-tabs"] {

 width: 40px;

}

/* Override vertical shifts when moving a tab */

  1. navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
 padding-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] #tabbrowser-tabs {
 padding-bottom: unset !important;
 margin-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] > #nav-bar {
 margin-top: unset !important;

}

/* hide indicators and caption buttons */

  1. TabsToolbar .private-browsing-indicator {display: none !important;}
  2. TabsToolbar .accessibility-indicator {display: none !important;}
  3. TabsToolbar .titlebar-buttonbox-container {display: none !important;}
  4. TabsToolbar #window-controls {display: none !important;}

/* -------------- TABS ON BOTTOM --------------- */

Задан Slouch 2 дня назад

Последний ответ от cor-el 1 час назад

Blacklisting

Hi, I am looking for some help. I am using Windows 10, Comcast internet, and a VPN. I get error message when my VPN is on saying that my IP Address has bee blacklisted … (читать ещё)

Hi, I am looking for some help. I am using Windows 10, Comcast internet, and a VPN. I get error message when my VPN is on saying that my IP Address has bee blacklisted and I can not send or receive emails using Thunderbird. I also get an error within Thunderbird. My VPN Service says its either Comcast or Thunderbird. Been working with Comcast on the issue. Could it be a Thunderbird issue? My VPN Service says to reinstall Thunderbird but no guaranties that will help. Please let me know if there are any solutions I can try. Otherwise I may need to pay more for a dedicated IP Address. Thanks Marc

Задан MB 6 часов назад

Последний ответ от david 1 час назад

need to send out emergency email to many addresses

I am trying to send out an emergency email asking for GoFundMe contributions to a very large amount of addresses. Thunderbird has suspended my ability to send emails comp… (читать ещё)

I am trying to send out an emergency email asking for GoFundMe contributions to a very large amount of addresses. Thunderbird has suspended my ability to send emails completely. Please help, this needs to be done immediately. Here's what Tbird is now saying: "Sending of the message failed. The message was not sent due to exceeding the allowed number of recipients. The server responded: <wdr@nc.rr.com> service deferred. Too many recipients in a short amount of time. Please try again later. AUP#Out-1440."

I think this is unreasonable. I understand the need to fight spam, but this most definitely is not that.

Задан notthere56 8 часов назад

Последний ответ от david 2 часа назад

Making multiple mailing lists from an address book

Questions like this have already been asked, but I didn't find a proposed solution I'd like, and none of the threads are still open for comment. I guess this question sho… (читать ещё)

Questions like this have already been asked, but I didn't find a proposed solution I'd like, and none of the threads are still open for comment. I guess this question should be considered as an enhancement request.

Our small association has about 600 contacts, which have to be divided into several mailing lists, for two reasons: 1) Service providers limit the number of contacts per mailing and per hour or day.

Perhaps, a future version of Thunderbird could have autiomation that sends long address or mailing lists as batches of 50 (for example), with a suitable time interval between batches. Presently, these repetitive mailings have to be done manually, which leads to errors, of which the worst is forgetting to put the addresses in the Bcc field (which can't be set as default).

2) Our members have various non-exclusive functions and activities, such as committee member or participant in different activities, so that a given contact might appear in more than one mailing list.

Manually constructing these mailing lists, for example by drag and drop, is tedious to say the least. So would it be possible to provide a means of selecting contacts for a given list as a function of contact data? For some purposes this could be simply the position in the alphabet of peoples' names. We would use in addition the 'custom properties' fields (which seem to be limited to 4 when manually editing a contact). While this approach is identical to the one we use routinely with spreadsheets, I'm aware that spreadsheets are or should be banned for managing lists of contact data.

Задан Lee 6 часов назад

Последний ответ от david 3 часа назад

ff pass words gone

hi can anyone tell me how to get my saved passwords back into ff. they got deleted somehow by Clean Disk app instructions ive found on web are for everything except wha… (читать ещё)

hi can anyone tell me how to get my saved passwords back into ff. they got deleted somehow by Clean Disk app

instructions ive found on web are for everything except what i need thanks

Задан bill 3 дня назад

Последний ответ от cor-el 3 часа назад

Thunderbird

Hi I am having problems with Thunderbird, i’m not sure if it’s to do with a windows 11 update or something else. Thunderbird is not responding also at the start of the ‘n… (читать ещё)

Hi I am having problems with Thunderbird, i’m not sure if it’s to do with a windows 11 update or something else. Thunderbird is not responding also at the start of the ‘not responding’ emails from one of my accounts disappeared and then gradually started to reappear but didn’t get up to date and now just not responding st all. I have tried various things to resolve this, uninstalling and reinstalling Thunderbird, doing this and opening my pc in safe mode, doing this and opening Thunderbird in safe mode. Deleting and reinstalling the latest windows 11 update, reinstalling the latest Thunderbird update. I don’t know what to try next? I read somewhere to delete your profile, after saving it, and getting a new profile but no idea how to do this. Any help appreciated.

Задан Barbara Allison 2 дня назад

Последний ответ от christ1 4 часа назад

User Name keeps changing. The fix I read does not work for me in 2024. Please, please help.

""Description: COX Server Name: smtp.mail.yahoo.com Port: 465 Connection Security: SSL/TLS Authentication method: OAuth2 User Name: your user name, duh - Mine keeps chang… (читать ещё)

""Description: COX Server Name: smtp.mail.yahoo.com Port: 465 Connection Security: SSL/TLS Authentication method: OAuth2 User Name: your user name, duh - Mine keeps changing the user name to the last name I put into any of my 6 accounts. The only way it will send mail is if the correct user name is in the correct account (obviously). Why is it changing constantly? click OK""

I've read the "fixes" from 2023 and they do not work for me. I tried changing the DESCRIPTION to blank, didn't work. Changed them to the corresponding e-mail for the account. Didn't work. Changed it to "SMTP" with the corresponding e-mail. Didn't work.

It keeps changing the last one I edit to the one I edited before it. It's driving me crazy. Won't send mail unless the User Name is correct (obv.)

Whole mess started when forced to switch from Cox to Yahoo recently. Seems to be working other than TB changing the name as soon as I type in the next one in the next email address and then it not working until I change the User Name back to the proper e-mail address of the 6 accounts.

Задан ceeveekay 18 часов назад

Последний ответ от david 4 часа назад

Spell Checker still does not work even with multiple dictionaries and language packs installed and enabled, plus "Check your spelling as you type" ticked

Title, The option to switch languages is also not present in the right click menu (see attached image) I'm really unsure how to figure this out so any advice would be g… (читать ещё)

Title,

The option to switch languages is also not present in the right click menu (see attached image)

I'm really unsure how to figure this out so any advice would be greatly appreciated.

Thank you for your time.

Задан eftdlcoy 8 часов назад

Последний ответ от cor-el 4 часа назад

Version 125.0.3, Mac, tab crashing

Since upgrading to the last version, 125.0.3 I'm getting tab crashes. Is there any way to go to a previous version? I have not had any issues with the websites I'm vi… (читать ещё)

Since upgrading to the last version, 125.0.3 I'm getting tab crashes. Is there any way to go to a previous version? I have not had any issues with the websites I'm visiting until this new version of Firefox.

Задан robertglenanderson 5 часов назад

Последний ответ от Paul 4 часа назад

Crashes without reason (Linux)

System OS: Debian (codename: bookworm) Problem description: I had installed a fresh version of Firefox and it's keeping to crash the pages (Error: The page has crashed) … (читать ещё)

System OS: Debian (codename: bookworm) Problem description:

I had installed a fresh version of Firefox and it's keeping to crash the pages (Error: The page has crashed) without any reason. Any troubleshoot methods (including clearing the cache, cookies, history and even restarted the network and pc.... only to fail and keep having same issue.

I had checked if there is no problem with the opened website in another web browser and in it the page was working correctly.


The issue persist from several versions of Firefox

Задан Mcgiwer 5 часов назад

Последний ответ от Paul 4 часа назад

Get UAC popup requiring permission to update

Hi, I have been using firefox for many years and never showed me an UAC popup requiring permissions to update firefox as soon as i clicked the firefox icon in the taskbar… (читать ещё)

Hi, I have been using firefox for many years and never showed me an UAC popup requiring permissions to update firefox as soon as i clicked the firefox icon in the taskbar. Today suddenly required it. I am administrator in windows 10, and have automatic updates enabled as always. I am using 125.0.3 (64-bit) version. This could be a bug or a virus? i am worried that could have given permission to a virus to install something else when i pressed the firefox icon.

Задан YoPispo 9 часов назад

Последний ответ от zeroknight 7 часов назад

unwanted background connection while starting mozilla firefox browser

Hello, I like using Firefox browser every day. After installing and running Avast antivirus protection (program version : 24.3.6108 (build 24.3.8975.832)), Avast no… (читать ещё)

Hello,

I like using Firefox browser every day. After installing and running Avast antivirus protection (program version : 24.3.6108 (build 24.3.8975.832)), Avast notification always show this message every time I start up Firefox : please check the uploaded images : FPA Scam.jpg.

I already checked the extenstion, the Settings, and the Advance Settings of Firefox browser. I'd like to know if there is any parameter related to engine.forexpeacearmy.com and it is enabled. Unfortunately, I can't found any related parameters.

So, I decide to contact Firefox support to find out what happen to my Firefox browser, why it always call the forexpeacearmy site at the start up, and finally I want to remove it. Because I'm affraid it could be some kind of trojans / malwares and put my laptop into risks.

Kindly need your advise. Thank you.

Kind regards, Gideon

Задан gidhsk 6 дней назад

Последний ответ от cor-el 5 часов назад

Spell Checker still does not work even with multiple dictionaries and language packs installed and enabled, plus "Check your spelling as you type" ticked

Title, The option to switch languages is also not present in the right click menu (see attached image) I'm really unsure how to figure this out so any advice would be g… (читать ещё)

Title,

The option to switch languages is also not present in the right click menu (see attached image)

I'm really unsure how to figure this out so any advice would be greatly appreciated.

Thank you for your time.

Задан eftdlcoy 8 часов назад

Последний ответ от zeroknight 7 часов назад

No longer have ability to open Hints on Ancestry while using Firefox

I prefer using Firefox as my browser (have done so for years), but recently I have noticed inability to open some hints provided on my family trees on Ancestry.com When … (читать ещё)

I prefer using Firefox as my browser (have done so for years), but recently I have noticed inability to open some hints provided on my family trees on Ancestry.com

When I called Ancestry, they suggested I use a different browser (: - but when I did, I was able to open the hints Firefox won't open. What is the problem? I was also told that another Ancestry user had called in previously with the same problem. PLEASE fix this!

If it helps, I use Windows on an HP Envy laptop (have for some time - wasn't a problem before a month or so ago). Will I hear back from anyone as to when this might be addressed/fixed?

Задан Happyhermit 7 часов назад

Последний ответ от zeroknight 7 часов назад