Showing questions tagged: Show all questions

firefox crashes

I have an insane amount of crashes i have tried everything i think my pc is just damaged either windows or disk or viruses i have no idea?! all my browsers same issue i… (read more)

I have an insane amount of crashes i have tried everything i think my pc is just damaged either windows or disk or viruses i have no idea?! all my browsers same issue including firefox

Asked by goodkat430 1 hour ago

Last reply by Paul 16 minutes ago

As of 5/5/2024 I am unable to login to my outlook.com account from Firefox.

I can login from other web browsers, but not Firefox. What's going on? When I try to login as I have always dine in the past, this is what comes up: https://outlook.liv… (read more)

I can login from other web browsers, but not Firefox. What's going on?

When I try to login as I have always dine in the past, this is what comes up: https://outlook.live.com/mail/0/

But then absolutely nothing happens. Please advise.

Asked by cleo.miller 1 hour ago

display colors on twitter

Hi. with Firefox not able to get default colors on twitter. With other browser no problem - i've got default colors All Extensions disabled, restarted - but no change … (read more)

Hi. with Firefox not able to get default colors on twitter. With other browser no problem - i've got default colors All Extensions disabled, restarted - but no change

Asked by ivkovic651 1 hour ago

Touch Keyboard not working in Firefox

I have windows 10 pro (64), 22H2 OS build 19045.4170, Windows Feature Experience Pack 1000.19054.1000.0 and latest Firefox (125.0.3) installed on A HP Pavilion Notebook 1… (read more)

I have windows 10 pro (64), 22H2 OS build 19045.4170, Windows Feature Experience Pack 1000.19054.1000.0 and latest Firefox (125.0.3) installed on A HP Pavilion Notebook 17 F121DS, Serie 5CD4355YDX. Touch Keyboard (not to be confused with on-screen) opens and closes immediately; sometimes, on the first occurrence, it stays open long enough to be able to click on a text field and then disappears. "On screen keyboard" works fine as does "Touch keyboard" in Edge and Chrome and all other Apps. Since this is a recent occurrence, and a lot of odd changes took place after the last FF update, I have reverted to Firefox 124, after this did not work also did a restore to last Restore Point from April. No change! I have consulted the [1754973] as well as [1750584] , but these did not help me much further. Any suggestions or is there a bug?

Asked by Karl 2 hours ago

www.undefined.com? Message just appeared on home page saying cannot connect to www.undefined.com?

Hi Friends.... This morning logged into my website as usual and this message appeared on the home page. I have not checked the link as it seems potentially malicious ... … (read more)

Hi Friends.... This morning logged into my website as usual and this message appeared on the home page. I have not checked the link as it seems potentially malicious ... It does not appear when visiting my site on Safari. I have emptied the cache I have been through troupbleshooting mode I have reinstalled Firefox and it still is there..

How to rid myself of this

All help gratefully received Graham

Macbook pro 2017 OS 12.7 Firefox 125.03

Asked by gb32 2 hours ago

can't use bank website

I'm having trouble using my bank's website. Sometimes I can't log on (error messages) or I can log on and can't use certain features. The bank is Regions. The site works … (read more)

I'm having trouble using my bank's website. Sometimes I can't log on (error messages) or I can log on and can't use certain features. The bank is Regions. The site works with other browsers. Is there some setting on the latest Firefox that needs to be adjusted? The articles I've read don't help. Thanks.

Asked by amyh2 16 hours ago

Last reply by Chandler Bing 4 hours ago

Bookmarks Toolbar Popup Menu Padding, Color, and more.

Hi All, I'm trying to change the appearance of the "Bookmarks Toolbar / Chevron >>" popup menu, which (after version 88) has turned bright white with extra padding… (read more)

Hi All,

I'm trying to change the appearance of the "Bookmarks Toolbar / Chevron >>" popup menu, which (after version 88) has turned bright white with extra padding between menu items and rounded corners.

I'm a fan of system menus, so I would really like the popup menu to look like the regular bookmarks menu from the top menu bar (see attached image).

I also like the subtle chiseled vertical line separating the favicons and the descriptions, and the 1px gray border around the menu, plus square corners.

I took a guess at some of the variable names, but only the menu's background color has changed.

Maybe someone knows how to change other attributes such as border color, radius, menu-item-height, padding, and add in the 3D vertical column line?

Thank you!

Here is my first attempt at the code...

#PersonalToolbar menupopup {
  /* Text color */
  --menu-color: #000 !important;
  --arrowpanel-color: #000 !important;
  --panel-color: #000 !important;
  /* Background color */
  --menu-background-color:  #f0f0f0 !important;
  --arrowpanel-background: #f0f0f0 !important;
  --panel-background: #f0f0f0 !important;
  /* Border color (if any) */
  --menu-border-color: #606060 !important;  /* not working on boomarks toolbar menu */
  --menu-border: 1px !important;  /* not working on boomarks toolbar menu */
  --menu-border-radius: 0px !important;  /* not working on boomarks toolbar menu */
}
/*** Tighten up drop-down/context/popup menu spacing (8 Sep 2021) ***/
menupopup:not(.in-menulist) > menuitem, 
menupopup:not(.in-menulist) > menu {
  padding-block: 0px !important; /* reduce to 3px, 2px, 1px or 0px as needed */ 
  min-height: unset !important; /* v92.0 - for padding below 4px */
}

Asked by Slouch 7 hours ago

Can't launch my url in Selenium-controlled Firefox browser process

Receiving this error: Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window. My desktop app redirects user to a … (read more)

Receiving this error: Firefox is already running, but is not responding. The old Firefox process must be closed to open a new window.

My desktop app redirects user to a login screen on Firefox, and I want to automate it using Selenium. My current workflow: 1. Launch Selenium-controlled Firefox browser using GeckoDriver 2. Click on "Login" button on my desktop app. The desktop app launches the login screen on user's OS default browser using the default user profile (in which case I set in profiles.ini to the temp profile copy created by Selenium). 3. (ERROR) Popup on the above error is displayed

Code: import configparser import os

web_driver = selenium_webdriver.Firefox(executable_path='C:\\Users\\mnxl\\.wdm\\drivers\\geckodriver\\win64\\v0.34.0\\geckodriver') profile = web_driver.capabilities['moz:profile']

  1. Path to the Firefox profiles folder

profiles_path = os.path.expanduser(r'~\AppData\Roaming\Mozilla\Firefox')

  1. Path to the profiles.ini file

profiles_ini_path = os.path.join(profiles_path, 'profiles.ini')

  1. Read the profiles.ini file

config = configparser.ConfigParser() config.read(profiles_ini_path)

  1. Find the section for the profile to set as default

for section in config.sections():

   if config.has_option(section, 'Path') and config.get(section, 'Path') == profile:
       # Set this profile as the default
       config.set(section, 'Default', '1')
   else:
       # Set all other profiles as not default
       config.set(section, 'Default', '0')
  1. Write the changes back to the profiles.ini file

with open(profiles_ini_path, 'w') as configfile:

   config.write(configfile)

Asked by Magdeline Ng 6 hours ago

Firefox munches computer memory pointlessly - any ideas?

Dear Anyone. I've got Firefox 125.0.3 - but ALL Firefoxes have ALWAYS done this! I've got 12 gig RAM. I've been browsing for - say - a couple of hours or so, I look at… (read more)

Dear Anyone.

I've got Firefox 125.0.3 - but ALL Firefoxes have ALWAYS done this!

I've got 12 gig RAM. I've been browsing for - say - a couple of hours or so, I look at how much RAM I've got spare and it's down to about 2 gig. So I close Firefox via Task Manager and all my RAM comes back. Then I REOPEN Firefox and all the old tabs are restored - but this time around, hardly using any memory! Which tells me the hewge memory munch was unnecessary the time before.

Firefox has ALWAYS done this from day 1. Nobody's ever fixed it, through all these updates. I've got the latest version and it's STILL memory-munching. How do you stop it? It's just annoying because you can be using other software that crashes because it runs out of memory, because Firefox has munched all its memory for no reason.

This is just a question, I'm Asperger's, I sometimes sound like I'm asking a leading/angry question but I'm not. (Not this time anyway!) Is there a workaround for this memory-munching problem, is it ever going to be fixed or is it too deeply embedded into Firefox's programming TO be fixed?

Yours respectfully

Chris.

Asked by ulrichburke 12 hours ago

Last reply by TyDraniu 7 hours ago

Speedometer2.1 My Firefox Score: 161 My Chrome Score: 380

Speedometer2.1 My Firefox Score: 161 My Chrome Score: 380 why im missing? its normal? same hardware, no extensions. how can i increase my firefox score? i have Ryzen … (read more)

Speedometer2.1 My Firefox Score: 161 My Chrome Score: 380

why im missing? its normal? same hardware, no extensions.

how can i increase my firefox score?

i have Ryzen 5600 CPU and Radeon 6600 VGA and M2 SSD

Asked by moderndefender 8 hours ago

Setting border color for focused URL Bar

Hi All, I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus. The following code works for the se… (read more)

Hi All,

I'm trying to set the border color for my url & search bars to gray when non-focused, and blue when receiving the focus.

The following code works for the search bar, but the url bar is receiving a separate blue border around the gray border, instead of changing the color from gray to blue.

Can someone suggest how I might set the url bar to blue (just a single border, not the double it has now), both when it has focus and when it's expanded?

Thank you!

/* set non-focused url & search bars to gray border */
#urlbar > #urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background, #searchbar { border: 1px solid #a1a6b5 !important; outline: none !important; border-radius: 0px !important; }
/* set focused search bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #searchbar:focus-within { border: 1px solid #0078d7 !important; }
/* set focused url bar to blue border */
#urlbar-background, #urlbar[breakout][breakout-extend] > #urlbar-background:focus-within, #urlbar:focus-within { border: 1px solid #0078d7 !important; }

Asked by Slouch 9 hours ago

Disabling bookmark bar Favicons in 2024

Hello there! I recently had to reinstall Firefox as my original drive died. I had used about:config to disable the bookmark bar favicons as I have a visual aesthetic I e… (read more)

Hello there!

I recently had to reinstall Firefox as my original drive died. I had used about:config to disable the bookmark bar favicons as I have a visual aesthetic I enjoy on my computer.

Now in 2024, it seems that all of the settings I previously used are no longer functioning when toggling them to false within about:config. They were browser.chrome.favicon, and, browser.chrome.site_icons .

Doing searches, all I can find are tips and tricks from many versions ago, some dating all the way back to 2007.

Does anyone know how, in the current version of Fires, which at the time of this writing is 125.0.3 to remove the favicons? I have attached a pic of the look I am going for, which is the default globe icon, instead of the annoying favicon. I tried the userChrome.css trick, but it completely removed the globe icon as well.

I know there has to be a new setting in about:config that will work, I just can't seem to find it.

Any help would be most welcome! And thank you!

Asked by Kojimada 12 hours ago

Last reply by cor-el 11 hours ago

Sorry but even getting to find HOW to Submit to get help is awful. Desperate for help with Thunderbird lost all my emails - again!

Urgent Help Please as lost ALL EMAILS - I cannot get to post in Thunderbird: 1) I've now spent 4 hours, (from what was trying to sort a 'simple' problem on the server), a… (read more)

Urgent Help Please as lost ALL EMAILS - I cannot get to post in Thunderbird: 1) I've now spent 4 hours, (from what was trying to sort a 'simple' problem on the server), as I couldn't send or receive any emails, as they think I've 6.5Gb of data on it, in spite of my deleting all my emails off it. So they allowed some extra space to temp sort it again. It's been an issue for about 3mths now. But I deleted everything just the other day having confirmed that was not deleting them off my laptop and that the previously lost emails 2 yrs ago weren't still on their server.

But now checked back on my email client Thunderbird, and I've no emails. They're all GONE bar the odd few I've put into folders (I stopped using folders years back as that lost all my emails way back then!), so I'd been keeping them all in the Inbox. Although I've a few old Inbox files with previous old old emails in so I can access them if I need to. But at least their there! But now again I've just lost everything. This is such a disaster.

Over the last 2yrs it's been going OK until today. Now it's LOST ALL MY EMAILS. I'm as per usual up to my eyes and have to travel this friday for meetings next week. The last thing I needed today was this. I've lost so much data and info in those emails it's doesn't bare thinking about. From show tickets that I need, medical info and data, to flight details to all sorts of crucial data. My ONLY saving grace is that anything I've replied to, I have a copy in the sent folder.

So Please Forgive this being in Firefox, as I can't even add it to Thunderbird help area!! I've had to reset my pw too just to sign in. Sadly right now it all feels so very upsetting I'm thinking I'll have to just have to start using another email client! If every 2 yrs I lose all my emails then this is just not acceptable. I hope you can move this to the Thunderbird threads. If you do please send me a link to it so I can try and find it.

What's so upsetting is had I saved the Inbox file when I saw the 13Gb file size, a bit eariler then, I think I could have saved them. I fear though that the remote server people deleted something, that was somehow still linked to my system and that's meant they've deleted my emails off my laptop too! Terrifying! (Perhaps that is what happened before back in '22. ???) I did look at a 'Sync' settings but not sure what they did so cancelled back out of them.

Running on Win 10 Pro 64Bit i7core 8Gb Ram Thunderbird 115.10.1 (64-bit)

Any and all help will be most gratefully received.

Sub issue to get help : 2) Error to Sumbit to Thunderbird: Sadly I've gone around and around your system saying Ask Question when nothing answers my query on the Thunderbird email questions. But when you click on Ask Question it just takes you back around the system again / Browse all Programs / re click on thunderbird/ reclick on Emails and back to list of FAQ's but nothing helps so click on Get Help and back around you go in a deja vu system.

Asked by AuroraMagic 5 days ago

Last reply by Matt 12 hours ago

Theme

I choose a new theme. After a while, I close Firefox. When I start Firefox again, my chosen theme appears briefly, then the default theme replaces it. Why? FYI: it doesn'… (read more)

I choose a new theme. After a while, I close Firefox. When I start Firefox again, my chosen theme appears briefly, then the default theme replaces it. Why? FYI: it doesn't happen with just one theme.

Asked by Iridium.throne 12 hours ago

Is it normal for bookmarks to take this long to load on startup?

I am using the latest version of firefox nightly. I notice this on another PC that shares the same profile. However one of my PCs doesn't take this long and it uses the… (read more)

I am using the latest version of firefox nightly. I notice this on another PC that shares the same profile. However one of my PCs doesn't take this long and it uses the same profile as well. It also seems that the pinned tabs are not loading correctly because I get errors with those pages too.

https://imgur.com/a/6IIyTJc

Asked by gsrgtrdg4565653 12 hours ago