Showing questions tagged: Show all questions

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. … (read more)

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?

Asked by Magicloud 10 hours ago

Last reply by cor-el 1 hour ago

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… (read more)

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?

Asked by martin.rusch 2 hours ago

Last reply by cor-el 1 hour ago

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… (read more)

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!

Asked by Elizabeth 2 hours ago

Last reply by cor-el 1 hour ago

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… (read more)

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 --------------- */

Asked by Slouch 2 days ago

Last reply by cor-el 1 hour ago

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… (read more)

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

Asked by bill 3 days ago

Last reply by cor-el 3 hours ago

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… (read more)

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.

Asked by eftdlcoy 8 hours ago

Last reply by cor-el 4 hours ago

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… (read more)

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.

Asked by robertglenanderson 5 hours ago

Last reply by Paul 4 hours ago

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) … (read more)

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

Asked by Mcgiwer 5 hours ago

Last reply by Paul 4 hours ago

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… (read more)

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.

Asked by YoPispo 9 hours ago

Last reply by zeroknight 7 hours ago

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… (read more)

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

Asked by gidhsk 6 days ago

Last reply by cor-el 5 hours ago

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… (read more)

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.

Asked by eftdlcoy 8 hours ago

Last reply by zeroknight 7 hours ago

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 … (read more)

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?

Asked by Happyhermit 7 hours ago

Last reply by zeroknight 7 hours ago

Browser automatically transfering to outlook when trying to access gmail.

Hey, So the issue i have is when i'm trying to access my gmail accounts from Mozilla. Whenever i try to access my mailbox or gmail site in itself it transfers me to out… (read more)

Hey,

So the issue i have is when i'm trying to access my gmail accounts from Mozilla. Whenever i try to access my mailbox or gmail site in itself it transfers me to outlooks login. I assume there's some setting or similar that i'm missing that's causing the issue but i haven't been able to find it.

I've narrowed it down to not being any add-on since i only got few but none of them should affect anything email related in anyway shape or form. Also it works fine in Chrome which has been my go-to go around for the issue but honestly it's getting a bit annoying.

Any help would be greatly appreciated. Thanks in advance

Asked by Jukki 7 hours ago

Last reply by zeroknight 7 hours ago

hero ware games not load now and work on chrome browser

when open games not loading until close " enhanced tracking protection" switch and next time even it is close not open until make " enhanced tracking protection" switc… (read more)

when open games not loading until close " enhanced tracking protection" switch

and next time even it is close not open until make " enhanced tracking protection" switch open and reload page and then closed and reload page again to open and every time like that

Asked by mohammed 9 hours ago

Last reply by zeroknight 7 hours ago

Can't save or add bookmarks

Currently unable to save, edit or add bookmarks. I have updated Firefox, refreshed Firefox, gone through Troubleshoot mode, cleared the startup cache, and deleted the "x… (read more)

Currently unable to save, edit or add bookmarks.

I have updated Firefox, refreshed Firefox, gone through Troubleshoot mode, cleared the startup cache, and deleted the "xulstore.json" in my profile folder.

Pls help this is driving me nuts + making me want to switch browsers. Thanks : )

Asked by tr 1 day ago

Last reply by zeroknight 9 hours ago

Add eyedropper tool to toolbar

the built in eyedropper tool is the simplest and easiest solution to grabbing screen colors without granting file permission to 3rd party solutions for full funcionality.… (read more)

the built in eyedropper tool is the simplest and easiest solution to grabbing screen colors without granting file permission to 3rd party solutions for full funcionality. I have power-toys but I hate to see this tool needlessly depreciated. My workflow needs to sample many colors at a time making the menu navigation needless. PLEASE let there be a way to add it to the toolbar, I hope there is. Thanks for your time

Asked by bromraven 1 day ago

Last reply by zeroknight 9 hours ago

Hotmail through Firefox breaks my network card

I had a few issues with Hotmail and Firefox in the past as described in other posts. Now it has stepped up a gear. I can use the internet for anything, but the moment I o… (read more)

I had a few issues with Hotmail and Firefox in the past as described in other posts. Now it has stepped up a gear. I can use the internet for anything, but the moment I open my Hotmail account in Firefox my Lan card stops working. At first I had no idea it was Hotmail, I tried everything from switching cables to using wifi only. When it happened on wifi I realised every time I went into Hotmail on Firefox my network card stopped functioning and I had to restart the computer. The thing is, when I use Hotmail through Microsoft Edge nothing happens and all is well with the world!!! No network card shutdown. I could read between the lines but I'm no conspiracy theorist, however, I don't think the problem is with Firefox. Is there any solution? I don't use Edge and I don't want to start.

Asked by M Donaldson 1 week ago

Last reply by zeroknight 9 hours ago