Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen

JavaScript

Trying to reactivate my Adobe CS6 software package and when I try to login to the Adobe website it tells me that to access the Adobe site I have to update my Mozilla brow… (Lesen Sie mehr)

Trying to reactivate my Adobe CS6 software package and when I try to login to the Adobe website it tells me that to access the Adobe site I have to update my Mozilla browser by adding JavaScript to the browser. Why is this required and is there any means to access Adobe using Firefox without complicating the browser by adding JavaScript?

Gefragt von Bill vor 2 Wochen

Letzte Antwort von James vor 2 Wochen

Browser

I was having problems with the firefox browser. This has never happened. I always use firefox and the company said that firefox was compatible to there sight but I coul… (Lesen Sie mehr)

I was having problems with the firefox browser. This has never happened. I always use firefox and the company said that firefox was compatible to there sight but I could not access.

Gefragt von mkoyoga vor 1 Monat

Letzte Antwort von jscher2000 - Support Volunteer vor 1 Monat

Firefox (ESR) latest version; can't open my online Bank accnts; Bank says I need to upgrade?

Bank Accounts: I can no longer access my Bank accnts online. My Bank says they no longer support my current version (ESR) & I must upgrade in order to access accnts o… (Lesen Sie mehr)

Bank Accounts: I can no longer access my Bank accnts online. My Bank says they no longer support my current version (ESR) & I must upgrade in order to access accnts online. Don't know what to do.

Gefragt von p_diane64 vor 3 Wochen

Letzte Antwort von James vor 3 Wochen

  • Gelöst
  • Archiviert

bug returning from hibernation: open firefox is ignored

In case anyone's interested, under Debian 12, when I resume from hibernation, if I have Firefox running as well as Tbird, if I click on a link in an email, the existing i… (Lesen Sie mehr)

In case anyone's interested, under Debian 12, when I resume from hibernation, if I have Firefox running as well as Tbird, if I click on a link in an email, the existing instance of Firefox is ignored and a new instance is opened. The first instance is in fact frozen -- it looks as it should but trying to change tabs or open a new tab is inactive. Seems I have to kill the open instance of FF, then if I click on a link in an email, FF pops up as it should with a new tab for the link, but the existing tabs are all there and all functional. It feels like a bug -- Tbird seems not to know that FF is already running.

Gefragt von rayandrews vor 1 Jahr

Beantwortet von zeroknight vor 1 Jahr

  • Gelöst
  • Archiviert

Searchbar no longer working

Hi. Whenever I click a button on the keyboard, the CTRL+F function comes up on it's own. I had previously disabled it because it ruins all shortcuts on youtube and with … (Lesen Sie mehr)

Hi.

Whenever I click a button on the keyboard, the CTRL+F function comes up on it's own. I had previously disabled it because it ruins all shortcuts on youtube and with tourettes, I often also get thrown around if I am reading long articles, because of misclicks.

Unfortunately I did the big mistake of updating, also with a tourettes-missclick, so my question is: 1) How do I remove the 'quick'-search function? I want the Ctrl+F bar to come up ONLY WHEN I CLICK ctrl+F, and I want it to go away again if I click ctrl+F again. I forget how to do it. 2) How do I remove all future update prompts? Given that it has been made so hard to configure firefox into something tolerable, I don't want to throw all my setup away with minor updates always thrown at me. It takes me a long time every time there's an update, I have to fix language and other stuff back again. It's just not worth it in time for me to use Firefox, if I have to make a setup so often. 3) Recommendations for the best version of Firefox to go back to and stay in for eternity, alternatively, browsers that does not change or add functions without first asking the user... (The answer is no, by the way, I don't want more new fancy functions)

Sorry for this nagging but I simply can't use my browser like this. It's just not working.

Gefragt von mettelolzjacobsen vor 2 Jahren

Beantwortet von zeroknight vor 2 Jahren

Browser out of date

I tried accessing Peacock but was told they only support version 127+. I checked my version is 115.xxx but says browser is up to date. What is going on? … (Lesen Sie mehr)

I tried accessing Peacock but was told they only support version 127+. I checked my version is 115.xxx but says browser is up to date. What is going on?

Gefragt von jimh714 vor 3 Monaten

Letzte Antwort von James vor 3 Monaten

  • Gelöst
  • Archiviert

Double icons on Stop & Reload buttons when using custom icons

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my St… (Lesen Sie mehr)

When reloading a page, or navigating to a new page, the default Stop icon momentarily appears over my own Reload icon, and the default Reload icon also appears over my Stop icon.

Please see attached image and animation.

Any idea if this is a minor bug?

Below is my code to split the Reload button into Reload & Stop buttons, then to add text to the navigation buttons, and finally to add icons to the navigation buttons.

This anomaly happens whether or not I split the Reload & Stop buttons. With just a single Reload button, I'm also seeing the default Reload icon appear over my own.

Thank you.

/* ---------- SPLIT RELOAD BUTTON INTO RELOAD & STOP ------------- */
#reload-button, #stop-button {
   display: inherit !important; 
} 
#reload-button > .toolbarbutton-icon {
  -moz-appearance: none !important; 
}


/* ------------ ADD TEXT LABELS TO NAVIGATION TOOLBAR BUTTONS --------------- */
/* Shows both icon and label for toolbarbuttons */
toolbar .toolbarbutton-1[label]{
  flex-direction: column;
  align-items: center !important;
}
toolbar .toolbarbutton-1[label]:not([disabled]):hover{ background-color: var(--toolbarbutton-hover-background) !important; }
toolbar .toolbarbutton-1[label] > .toolbarbutton-icon,
toolbar .toolbarbutton-1[label] > .toolbarbutton-badge-stack{
  padding: var(--toolbarbutton-inner-padding) !important;
  padding-bottom: 0px !important;
  height: calc(var(--toolbarbutton-inner-padding) + 16px) !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text {
  display: flex !important;
  min-height: 16px !important;
  padding-top: 3px !important;
  padding-bottom: 6px !important;
  background-color: transparent !important;
  overflow: hidden;
  width: 9ch; /* changes space between buttons */
}
toolbar .toolbarbutton-1[label] > .toolbarbutton-text::before{
  margin-inline: auto;
 }
:root:not([uidensity="compact"]) toolbar .toolbarbutton-1[label] > .toolbarbutton-text{ padding: 2px !important; }


/* ------------ ADD CUSTOM ICONS TO NAVIGATION TOOLBAR BUTTONS ----------- */
#back-button {
   list-style-image: url("image/back.png") !important;
   padding-top: 8px !important;
}
#back-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#forward-button {
   list-style-image: url("image/forward.png") !important;
   padding-top: 8px !important;
}
#forward-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#reload-button {
   list-style-image: url("image/reload.png") !important;
   padding-top: 8px !important;
}
#reload-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#stop-button {
   list-style-image: url("image/stop.png") !important;
   padding-top: 8px !important;
}
#stop-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#print-button {
   list-style-image: url("image/print.png") !important;
   padding-top: 8px !important;
}
#print-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}
#home-button {
   list-style-image: url("image/home.png") !important;
   padding-top: 8px !important;
}
#home-button image{
   max-height: 16px !important; 
   max-width: 16px !important;
   padding: 0px !important;
   margin-bottom: 3px !important;
}

Gefragt von Slouch vor 1 Jahr

Beantwortet von Slouch vor 1 Jahr

  • Archiviert

Spell Checker not working

The spell checker isn't working for me. I've found old answers to this: "You can see which dictionary is selected if you right-click in a text area and open the Language… (Lesen Sie mehr)

The spell checker isn't working for me. I've found old answers to this:

"You can see which dictionary is selected if you right-click in a text area and open the Languages sub menu. At least one dictionary should be installed and have a check mark to indicate that it is selected.

   open the "Add Dictionaries" link to install a dictionary if you do not have one. 

The spelling checker is enabled if [X] "Check Spelling" in the right-click context menu has a checkmark.

You can enable or disable spell checking globally:

   Options/Preferences -> General: Language and Appearance: "Check your spelling as you type" 

You can look here for dictionaries:

   https://addons.mozilla.org/firefox/language-tools/ 

Note that for spell check you need a dictionary. A language pack provides string translations for the user interface.

   https://support.mozilla.org/en-US/kb/use-firefox-interface-other-languages-language-pack 

You can check the layout.spellcheckDefault pref on the about:config page.

   http://kb.mozillazine.org/layout.spellcheckDefault "'


But I don't understand what most of this means!

I don't find 'language' because I don't know where to find a "text box containing more than one line" I'd have thought this was one, but the option does not come up here when I right click.

I realise this is probably me being dense, but can someone help in simple terms, please? Thanks.

Gefragt von janet25 vor 2 Jahren

Letzte Antwort von cor-el vor 1 Jahr

  • Gelöst

Unable to see "View all memories" on One Drive

Hi Up to a few days ago I was able to see "View all memories" from One Drive in Firefox. Not anymore. I am subscribed to One Drive. Every few days I get an email from O… (Lesen Sie mehr)

Hi

Up to a few days ago I was able to see "View all memories" from One Drive in Firefox. Not anymore.

I am subscribed to One Drive. Every few days I get an email from One Drive with the past memories from the day of the email. I will open the emails and click on "View all memories" then it would take me to the One Drive and I would be able to see those pictures individually. For a few days now I have not been able to do this on Firefox anymore. The website goes to gray like it is trying to download the pictures but it gets stuck there.

This is happening both on my desktop with Windows 7 and my laptop with Window 11. Everything works in the Microsoft Edge browser. I can see all the images individually from that day.

I have communicated this problem to Microsoft One Drive and it seems to be a browser problem. Is there any way that this problem can be solved in the Firefox browser?

I would appreciate your help, Amy

Gefragt von Amylogamy vor 4 Monaten

Beantwortet von Denys vor 2 Monaten

  • Archiviert

Firefox won't update to version 127 on macOS 10.15.7

I am running macOS 10.15.7 and Firefox won't upgrade past ESR v. 115 to the "regular" version 127. Alternately, downloading the Firefox v. 127 installer and running won… (Lesen Sie mehr)

I am running macOS 10.15.7 and Firefox won't upgrade past ESR v. 115 to the "regular" version 127.

Alternately, downloading the Firefox v. 127 installer and running won't update ESR v. 115 nor will it import bookmarks or data from the previous version ESR 115. Firefox v. 127 installs and starts as if I am a new user without any update or import option so that all previous settings, passwords, and data from ESR v. 115 are lost.

Is there a work-around for the upgrade to keep continuity, settings, bookmarks, and data when migrating to v. 127? Thanks!

Gefragt von koolerking52 vor 1 Jahr

Letzte Antwort von James vor 1 Jahr

  • Gelöst
  • Archiviert

Updated W10 to FF 116 and had cert problems

After updating a W10 laptop from 115 to 116 of FF the user started having problems with getting to different websites (sites they worked on/with regularly). The problem i… (Lesen Sie mehr)

After updating a W10 laptop from 115 to 116 of FF the user started having problems with getting to different websites (sites they worked on/with regularly). The problem is the cert DB. The doc I found says that it is cert8.db. Actually it is now cert9.DB.

What I had to do was go to task manager and kill a task that was holding the cert9.db file. Then I could rename it (cert9.old.db). Then restarted their laptop and FF came up and started fixing the cert file (as expected). This seems to have fixed their problem.

Gefragt von Wylbur vor 2 Jahren

Beantwortet von Wylbur vor 2 Jahren

  • Archiviert

115.23.0esr (64-bit) DOES NOT ALLOW ME TO LOG IN TO MY BANK ACCOUNT

i just upgraded firefox for Mac OS to 115.23.0esr (64-bit) and now I cannot log in to my bank account from this desktop. Safari works on the iPhone but I NEED FIREFOX ON… (Lesen Sie mehr)

i just upgraded firefox for Mac OS to 115.23.0esr (64-bit) and now I cannot log in to my bank account from this desktop. Safari works on the iPhone but I NEED FIREFOX ON THE DESKTOP IMAC (Sierra 10.12.6) There seems to be NO INFORMATION ON YOUR "ASK A QUESTION" PAGE ABOUT THE UPDATE

Gefragt von Warren Theriot vor 8 Monaten

Letzte Antwort von jonzn4SUSE vor 8 Monaten