sometimes google won't open

In windows 10, unrepeatably, firefox won't open google so I immediately open it in a new tab and it works. This happens randomly so I can't do any tests to find out if it… (read more)

In windows 10, unrepeatably, firefox won't open google so I immediately open it in a new tab and it works. This happens randomly so I can't do any tests to find out if it is an extension or hardware acceleration that is the problem.

Asked by jvvlog 2 weeks ago

Last reply by zeroknight 2 weeks ago

Videos automatically play after a short period of time after being paused (Ubuntu 22.04)

When I pause a video (any site) and go to another tab / stay on the site, after a seemingly random amount of time the video starts playing again. I'm using latest Firef… (read more)

When I pause a video (any site) and go to another tab / stay on the site, after a seemingly random amount of time the video starts playing again.

I'm using latest Firefox on Ubuntu 22.04 (snap).

I've tried (didn't work):

  • Disabling media hardware controls through about:config
  • Disabling autoplay through about:config

Asked by Pawel Len 2 weeks ago

Last reply by cor-el 2 weeks ago

Firefox / Windows 10 Constant Need to Refresh

Almost every time that I open a new session of Firefox I get a message that there is a problem and it needs a refresh, which removes the extension I use all the time. Any… (read more)

Almost every time that I open a new session of Firefox I get a message that there is a problem and it needs a refresh, which removes the extension I use all the time. Any ideas why this keeps happening over and over and what I might to resolve the problem?

Asked by irisheddie 2 weeks ago

Last reply by cor-el 2 weeks ago

Repeated Installation Requests

Hello, I've installed Firefox twice in the last couple of days (Windows 10 - I think) and I continue to receive messages that say I need to install the latest version. … (read more)

Hello, I've installed Firefox twice in the last couple of days (Windows 10 - I think) and I continue to receive messages that say I need to install the latest version.

Do you issue updates daily, or is there something wrong with my Firefox installation or is it something else?

Thank you.

Asked by Jerry Wiener 2 weeks ago

Last reply by zeroknight 2 weeks 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 17 hours ago

Last reply by cor-el 15 hours ago

Tried installing Keeppassxc--not sure if correst name

Hello, One of my email accounts Yahoo or Gmail appears to have been hacked. I received two phishing emails this week --3 if you count the last one who said she was call… (read more)

Hello,

 One of my email accounts Yahoo or Gmail appears to have been hacked. I received two phishing emails this week --3 if you count the last one who said she was calling on behalf of Medicare/Social Security and All members could get a preloaded card for several hundred dollars. I knew there was a plan to help certain folks, but it was not available to everybody. I asked her for the name of the plan and she hung up. the webpage she sent me to first or told me to go there where I could talk to a licensed agent. Do people who answer the phone have a license like insurance salespeople? Anyway, they had copied the govt. the site is right up the US sea.

Okay, just an example so I decided to try that KeeopassXC program you were offering but I could never get it to complete.

but it did something as I can't use my password They cancel your account if you tell them the truth --better just to say I need help resetting my password. They then ask you to send them a picture ID as in Driver's License. Noway I am going to do this --so I have at least some pretty valuable info if I can't get in.

Ny first time writing here - if any response please direct suggestions to pke225x2gmail or I guess I will check here. Don't know how you put people with possible solutions to seeker of HELP.

Sincere Thanks Paul

Asked by Paul Ellis 5 days ago

Last reply by jscher2000 - Support Volunteer 16 hours ago

Changing the URLB on click behavior

I would like the address bar to show what it would show when you type a "?" just by clicking. It's a default feature in chrome, I know, mentioning a competitive browser a… (read more)

I would like the address bar to show what it would show when you type a "?" just by clicking. It's a default feature in chrome, I know, mentioning a competitive browser as an example is kind of a no no, but it's the only example I can think of.

Asked by Sod 1 day ago

Last reply by jscher2000 - Support Volunteer 17 hours ago

Lost bookmarks

A couple of months ago, I suddenly lost all my saved bookmarks, plus the ones on my toolbar. Strange thing is, all the folders and sub-folders I created are still there, … (read more)

A couple of months ago, I suddenly lost all my saved bookmarks, plus the ones on my toolbar. Strange thing is, all the folders and sub-folders I created are still there, they're just all empty.

Can I get them back somehow? I've been collecting them for years so can't replace them all!

Firefox 125.2 iMac OS x10.15

Asked by amanda52 21 hours ago

Last reply by cor-el 17 hours ago

Poor screen resolution on extended display

I have 3 laptops all running windows 10 or 11. These all share a docking station giving access to an extended display, keyboard etc. All laptops run fine with the dockin… (read more)

I have 3 laptops all running windows 10 or 11. These all share a docking station giving access to an extended display, keyboard etc. All laptops run fine with the docking station except for one issue with the newest laptop... The screen resolution, only on firefox on the one laptop, (everything else is fine) is completly out of whack. I have tried the zoom function but no luck. I have trawled the internet but all the solutions are from 10+ years ago and refer to different versions of firefox and windows. I am not a computer geek so please dumb down any advice.

Asked by Simon 2 weeks ago

Last reply by cor-el 2 weeks ago

after updating newest version of Firefox the option to restore previous windows opened does not work

after updating newest the version of Firefox the option to" restore previous windows opened " does not work. Is there a work around when I close my browser and then reop… (read more)

after updating newest the version of Firefox the option to" restore previous windows opened " does not work. Is there a work around when I close my browser and then reopen the browser so that all the tabs that I had opened before closing my browser return as if I never left?I went into my setting and have the "open previous tabs" is checked. I even restarted my browser but nothing simple seems to work. Thanks in advance

Asked by Jane Boyle 1 day ago

Last reply by jscher2000 - Support Volunteer 17 hours ago

Browser issue with Microsoft Outlook

Hello, My name is Grey, and I'm experiencing an issue using Firefox as a browser to open my Outlook mail. For the past three days I have not been able to open any emails… (read more)

Hello,

My name is Grey, and I'm experiencing an issue using Firefox as a browser to open my Outlook mail. For the past three days I have not been able to open any emails as a network error screen appears. Using other devices and other browsers like Edge, the emails open fine, so it is not actually a network issue. This problem only occurs using Firefox, and specifically with Outlook emails. Everything else functions fine and I have not made any changes, besides the regular Firefox update. My computer is also up to date.

What can I do about this issue? I appreciate the advice,

grey

Asked by AshenLion 22 hours ago

Last reply by cor-el 18 hours ago

setting up Firefox on reset computer

I reset a computer, deleting all my files. I want to use, as I do elsewhere, Firefox as my browser. And though I signed into Firefox using my old credentials, none of my … (read more)

I reset a computer, deleting all my files. I want to use, as I do elsewhere, Firefox as my browser. And though I signed into Firefox using my old credentials, none of my bookmarks are there. How do I complete this setup?

Asked by Bobg 1 day ago

Last reply by cor-el 18 hours ago

Unwanted page loads up during windows startup

The page https://www.stardock.com/products/groupy/update opens during the loading of the OS background processes. I have looked up on the windows task manager, the about:… (read more)

The page https://www.stardock.com/products/groupy/update opens during the loading of the OS background processes. I have looked up on the windows task manager, the about:config and haven't found anything related to this process.

Asked by raphaelfhb 2 weeks ago

Last reply by jonzn4SUSE 2 weeks ago

Not able to sync my browsing data

Hello! I synced my browsing data yesterday by signing in to firefox account and reset my OS(window 10) to improve my laptop's speed. When I am trying to get back my brow… (read more)

Hello! I synced my browsing data yesterday by signing in to firefox account and reset my OS(window 10) to improve my laptop's speed. When I am trying to get back my browsing data back after resetting and installing firefox by signing in to my firefox account and pressing the Sync Now button then its not giving me my browsing data back. Why is it so? Need Help. Thank You!!

Asked by htmailcollector 2 weeks ago

Last reply by jonzn4SUSE 2 weeks ago

Recreating deleted drafts an emails through carbonite

I lost emails in my inbox and draft folders. Contacted carbonite to restore and they asked if emails in these folders were "physical" files that got deleted and if so wha… (read more)

I lost emails in my inbox and draft folders. Contacted carbonite to restore and they asked if emails in these folders were "physical" files that got deleted and if so what type of file the were ( such as MSF). Can some someone help please?

Asked by Tim Williams 1 day ago

Last reply by markwarner22 20 hours ago