Zobrazenie otázok označených: Zobraziť všetky otázky
  • Vyriešené

Two Firefox apps showing in settings subfolder "Applications "

I was uninstalling another app when I noticed that there are two application icons for Firefox, one dated 3/25 2023 and one dated 9/26/2023 (just installed new update). … (ďalšie informácie)

I was uninstalling another app when I noticed that there are two application icons for Firefox, one dated 3/25 2023 and one dated 9/26/2023 (just installed new update). How do I get rid of the first application dated 3/25/2023?

Otázku položil(a) taxquest Pred 1 týždňom

Na otázku odpovedal(a) cor-el Pred 4 dňami

  • Vyriešené

Walgreens prescription disabled

I have been using the Walgreens web site to manage my many prescriptions without problems. Now, most of the Walgreens web site still works but the two menu options that n… (ďalšie informácie)

I have been using the Walgreens web site to manage my many prescriptions without problems. Now, most of the Walgreens web site still works but the two menu options that need to display my personal prescription details fail with the display "Sorry, an unexpected error occurred. Please try again later." I initially thought that a Walgreens update might be in progress so just waited. Walgreens support gave me the same answer that there was probably web site maintenance in progress. After 4 days of the same problem and answer, I ported enough information to login in to Walgreens with the Microsoft Edge browser and access to my prescription information worked without a problem. I believe this problem with Firefox started around the time I updated to 117.0.1 but I might not have this perfectly correct. I was just notified to update to 118.0 and did so. Firefox access still fails and Edge access still works. Thanks for any help you can provide. Windows 10

Otázku položil(a) TrainClaude Pred 1 týždňom

Na otázku odpovedal(a) zeroknight Pred 5 dňami

  • Vyriešené

Youtube block autoplay not working

Hello, Recently Firefox tends to start autoplaying a YouTube video if I am on the tab. Before it would not play the video if i am on the tab unless I physically press … (ďalšie informácie)

Hello,

Recently Firefox tends to start autoplaying a YouTube video if I am on the tab.

Before it would not play the video if i am on the tab unless I physically press play.

It still works if I open a YouTube video in a tab that is not active, it will not autoplay, but as soon as I hover over and click on that tab it will start playing, however I do not want this to happen, I want it to pretty much always be autoplay blocked regardless if tab is active or not and I want to physically press play in order for it to start.

How to revert it to that state?

My block audio and video setting in firefox is already turned on, not sure what to do, pretty sure I did nothing on my end.

Right now I have to use extension called "disable autoplay" just to get by.

Thanks guys!

Otázku položil(a) HabibiFreshUFC Pred 1 dňom

Na otázku odpovedal(a) cor-el Pred 1 dňom

  • Vyriešené

Videos pause... video when not in foreground

So I have a video playing on firefox, but the moment it drops from the foreground, it immediately pauses the video (the actual video playback). The audio continues, but … (ďalšie informácie)

So I have a video playing on firefox, but the moment it drops from the foreground, it immediately pauses the video (the actual video playback). The audio continues, but the video stops until it is back in the foreground, at which point the video continues where it ought to. I have tried disabling the unload tabs in the config menu as well as disable the foreground pausing or whatever its called, as recommended by previous posts. I used to not have this issue at all, so I'm not sure what changed. Please help! Thank you.

Otázku položil(a) Sarah Arnett Pred 1 dňom

Na otázku odpovedal(a) zeroknight Pred 13 hodinami

  • Vyriešené
  • Archivované

What content is required in userChrome.css to move the tabs bar under all other bars?

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does N… (ďalšie informácie)

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does NOT move the Tabs Bar below the Bookmarks Bar. The Bookmarks Bar appears to be overwritten and blank, and occupies space below the Menu Bar, Navigation Bar, and Tabs Bar. This empty space separates the three bars which are implemented and the content of the currently-selected tab below it.

Currently, my userChrome.css file is a copy posted by Cor-el (?):


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* TABS: below nav-bar - fixed for 108+,113+ */

/* ROOT -variables */
*|*:root {
  --tab-toolbar-navbar-overlap: 0px !important;
  
  --tab-min-height: 25px !important; /*override density*/
  --tab-min-width:  80px !important; /*override default*/
}

/* TABS: below nav-bar - no longer needed in 113+ *//*
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {
  -moz-box-ordinal-group: 10 !important;
  order: 10 !important;
}
#TabsToolbar {
  -moz-box-ordinal-group: 1000 !important;
  order: 1000 !important;
}
*/

/* TABS: position */
#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 100vw !important;
}

/* for 107 and lower - disable this rule in 108 and newer *//*
#tabbrowser-tabs {
  width: 100vw !important;
} */

/* navigator-toolbox: PADDING */
*|*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
  padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*ADJUST*/
  position: relative !important;
}

/* TABS: HEIGHT */
#tabbrowser-tabs,
#tabbrowser-arrowscrollbox,
#tabbrowser-tabs .tabbrowser-tab {
  min-height: var(--tab-min-height) !important;
  max-height: var(--tab-min-height) !important;
}

#tabbrowser-tabs,
.tab-stack,
.tab-content {
  height: var(--tab-min-height) !important;
}

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

/* indicators - hide  */
.private-browsing-indicator {display: none !important;}
.accessibility-indicator    {display: none !important;}

/* window controls in full screen - hide*/
#TabsToolbar #window-controls {display: none !important;}

/* caption buttons on tab bar - hide */
*|*:root[tabsintitlebar]:not([inFullscreen="true"])
 #toolbar-menubar[autohide="true"] ~ #TabsToolbar
 .titlebar-buttonbox-container {display: none !important;}
________________________________________________________________________________________________

Evidently, the text editor for this website does several things to the above original text that, frankly, seem unnecessary and undesirable. The .CSS file is just an unformatted text file, so what is the problem with simply copying its contents and pasting it in to the body of this post?

Which is also to say that I do NOT have a clue as to what any line in the file is meant to do, what effect it has, why it is even in the file at all, or why it is written in the way that it is. So DO NOT tell me that I "CAN" create a Cascading Style Sheet on my own when I cannot even modify one that has been provided.

On the face of it, something is missing from the above CSS text. What change needs to be made to the above content so that the Bookmark Bar will appear between the Navigation Bar and the Tabs Bar??

Thank-you very much for your time and attention to this request for assistance.

Otázku položil(a) Blacklisted Pred 2 rokmi

Na otázku odpovedal(a) DB-1 Pred 2 rokmi

  • Vyriešené

118.0.1 Browser On Windows Does Not Allow Log On to Centurlylink.net Email

118.0.1 Browser On Windows Does Not Allow Log On to Centurlylink.net Email Works just fine on Edge. I think you broke something folks! … (ďalšie informácie)

118.0.1 Browser On Windows Does Not Allow Log On to Centurlylink.net Email

Works just fine on Edge. I think you broke something folks!

Otázku položil(a) sidk_98 Pred 1 dňom

Na otázku odpovedal(a) sidk_98 Pred 1 dňom

  • Vyriešené

Can I keep two sets of mobile bookmarks seperate when syncing?

I know the answer to this is probably going to be along the lines of this is not possible, but I thought I'd ask anyway since none of the information is entirely clear. O… (ďalšie informácie)

I know the answer to this is probably going to be along the lines of this is not possible, but I thought I'd ask anyway since none of the information is entirely clear. Or answers my exact question.

I have one desktop install of firefox and I have two android ones. I have all three synced to one firefox account, so it's easy to grab links I saved while wiki diving on something. While this works perfectly for the desktop side of things, the mobile side is where the issue arises.

Currently all my bookmarks from both mobile firefox accounts are merged into one long set, regardless of device. While the desktop ones have their own folder. Is there a way to keep the bookmarks from each device in their own separate folder? Like say instead of having one big mobile bookmarks folder, having one named DeviceX, and the other DeviceY?

It's still semi functional on desktop where I have more screen real estate and have to deliberately go to the mobile bookmarks folder, but on the phones it can be confusing when a set of bookmarks from device 1 mixes randomly into those of device 2. As it can become a lot harder to keep track of things.

Now I know one can turn off syncing of bookmarks. This is not what I'm looking for as I do still want to be able to share them between all three devices. Just have them more organised.

I also know one can make different accounts for say work or personal, but again I want them all to sync, just not mix them into one list.

So in short is there a way to be able to have two android devices into a threeway sync and keep the bookmarks separate? Or is my only option the round abound way of making subfolders and hope I remember to save in those?

Thanks either way.

Otázku položil(a) Elyndra Pred 1 mesiacom

Na otázku odpovedal(a) jscher2000 - Support Volunteer Pred 1 mesiacom

  • Vyriešené

How do I turn off web translation in Firefox 118.0.1??

How do I turn off web translation permanently for ALL pages in Firefox 118.0.1?? It´s the most annoying feature so far from Firefox. Even if I delete all languages in pre… (ďalšie informácie)

How do I turn off web translation permanently for ALL pages in Firefox 118.0.1?? It´s the most annoying feature so far from Firefox. Even if I delete all languages in preferences, it shows up on every page I visit.

Otázku položil(a) gjensse Pred 4 dňami

Na otázku odpovedal(a) TyDraniu Pred 4 dňami

  • Vyriešené

TLS Extensions 65037 during client hello since firefox 118 (Windows)

Hello, I see with windows Firefox version 118 a TLS extension id 65037 on every client hello handshake containing a bunch of data. Does somebody know what this extension… (ďalšie informácie)

Hello,

I see with windows Firefox version 118 a TLS extension id 65037 on every client hello handshake containing a bunch of data. Does somebody know what this extension is used for? I couldn't find anything about this on the web or in the firefox docs / release notes. Other browser (chrome / edge) don't have this extension in use.

Thanks

Otázku položil(a) Lukasz Pred 1 dňom

Na otázku odpovedal(a) zeroknight Pred 1 dňom

  • Vyriešené

Firefox just stops working and has black screen after using it at random times

Firefox just turns into a black screen and becomes unusable. It has been happening for a long time now and i have checked RAM and CPU usage and they are all fine, as I ex… (ďalšie informácie)

Firefox just turns into a black screen and becomes unusable. It has been happening for a long time now and i have checked RAM and CPU usage and they are all fine, as I explored potential causes.

I will be using firefox and it just turns all black on all screens and is completely unusable. To use it again I have to force close all windows and reopen it and it works again.

This is a frequent issue that I have seen

Otázku položil(a) K_A Pred 3 týždňami

Na otázku odpovedal(a) zeroknight Pred 3 týždňami

  • Vyriešené

bookmarks thumbnails

Hello, what's wrong with the bookmarks thumbnails, that they don't display properly (not as the site's logo), only some default ones that look ugly. Only some tabs have … (ďalšie informácie)

Hello, what's wrong with the bookmarks thumbnails, that they don't display properly (not as the site's logo), only some default ones that look ugly. Only some tabs have thumbnails. I have freshly installed firefox on a new PC and I've been using it for another day and nothing changes, I visit these websites constantly and these icons still look like this. It will stay like this or is it some browser error ?

Greetings

Tom

Otázku položil(a) bruno.funkyzeit Pred 2 dňami

Na otázku odpovedal(a) bruno.funkyzeit Pred 1 dňom

  • Vyriešené

Fuentes pixeladas en algunas páginas con Debian 12

Hola. Mi ordenador tiene Debian 12. Utilizo Firefox 118, instalado a través de Flatpak. El problema que tengo en algunas páginas es que veo las fuentes pixeladas y la im… (ďalšie informácie)

Hola. Mi ordenador tiene Debian 12. Utilizo Firefox 118, instalado a través de Flatpak. El problema que tengo en algunas páginas es que veo las fuentes pixeladas y la impresión es muy defectuosa, hasta el punto de no entender lo que aparece escrito. Esto sólo pasa en algunas páginas.

Si descargo directamente Firefox desde la página de Mozilla y abro la paǵina con una configuración limpia del navegador, las fuentes se ven correctamente; sin embargo, si sincronizo los datos de usuario, instalándose los datos, extensiones y demás las fuentes en determinadas páginas se ven mal.

Desactivé las extensiones pero el problema no se resuelve. Desde una instalación limpia de Firefox instalé una a una las extensiones y complementos, pero no logré reproducir el problema. Borré incluso la caché del navegador, pero nada. Y también sincronicé los datos de usuario en una instalación de Firefox en Fedora, pero el resultado es también negativo.

Alguna idea?

Gracias.

Otázku položil(a) Xosé Manuel Baños García Pred 4 dňami

Na otázku odpovedal(a) Xosé Manuel Baños García Pred 1 dňom

  • Vyriešené

HSTS issue on vercel deployed app

Hello, I deployed my NextJS app on Vercel, but I cannot access my deployed app through firefox because of HSTS. I tried to access several sites with domain .vercel.app … (ďalšie informácie)

Hello,

I deployed my NextJS app on Vercel, but I cannot access my deployed app through firefox because of HSTS.

I tried to access several sites with domain .vercel.app but the issue persists.

I can access all sites with ".vercel.app" domain just fine on other browsers except Mozilla Firefox.

I already looked for solution on the internet such as:

  1. Removing entry on SiteSecurityServiceState.txt
  2. Forget site
  3. Clear browser cache & history
  4. Restart browser

Any help will be appreciated.

Thank you for your time and attention.

Otázku položil(a) Muhammad Fikri Syahid Pred 3 dňami

Na otázku odpovedal(a) cor-el Pred 3 dňami

  • Vyriešené

Right Click Drop Down Menu Displaying Icons on one PC

Since the latest download one of my 3 win10 PC's is displaying icons on top of the text. Firefox is up to date at Ver 118.0.1 (64-bit) I expect its a setting but I cannot… (ďalšie informácie)

Since the latest download one of my 3 win10 PC's is displaying icons on top of the text. Firefox is up to date at Ver 118.0.1 (64-bit) I expect its a setting but I cannot find it. Screenshot attached. TIA KR's Andy B

Otázku položil(a) Andy B Pred 3 dňami

Na otázku odpovedal(a) Terry Pred 3 dňami

  • Vyriešené

Firefox search suggestions won't turn off

Dear all, I have unchecked all the boxes in "Settings/Search/Search Suggestions" and disabled history for the search engine and yet Firefox still displays search suggest… (ďalšie informácie)

Dear all, I have unchecked all the boxes in "Settings/Search/Search Suggestions" and disabled history for the search engine and yet Firefox still displays search suggestions in the address bar. They even have a small header called "Firefox Suggest". How can I turn this off? Thanks for your help, Markus

Windows 11 Home 22H2 FF 118.0.1 (64-bit)

Default search engine is Google

Otázku položil(a) toegelmarkus Pred 2 dňami

Na otázku odpovedal(a) toegelmarkus Pred 2 dňami

  • Vyriešené

Firefox crashes while using Windows magnifier

Hello: I must use the magnifier that came with Windows or I cannot read the screen. All was fine until Firefox updated. Now, when I try to use the magnifier, Firefox and… (ďalšie informácie)

Hello:

I must use the magnifier that came with Windows or I cannot read the screen. All was fine until Firefox updated. Now, when I try to use the magnifier, Firefox and all the sites I am using freeze. The entire screen fades out, and an hour glass shows up. But nothing happens after that. I have to go to the task manager and close Firefox, then start it up again.

I checked for Windows updates and everything is current. I am using Windows 10.

How can I fix this?

Otázku položil(a) Virginia Small Pred 1 týždňom

Na otázku odpovedal(a) zeroknight Pred 1 týždňom

  • Vyriešené

Firefox cannot open local files

When I open a website where there is a document upload feature and I want to upload a document but when I click the button to upload a document Firefox can't respond, I'v… (ďalšie informácie)

When I open a website where there is a document upload feature and I want to upload a document but when I click the button to upload a document Firefox can't respond, I've tried several methods such as deleting cache, even reinstalling but I still encounter this problem.

I can't add images to this report because of this problem

Thank you

Otázku položil(a) anjarwilujeng8 Pred 2 dňami

Na otázku odpovedal(a) zeroknight Pred 2 dňami

  • Vyriešené

Recently closed windows

Hello, once again the function of restoring recently closed windows has stopped working, it is displayed in gray and you cannot enter it I usually work on two or three wi… (ďalšie informácie)

Hello, once again the function of restoring recently closed windows has stopped working, it is displayed in gray and you cannot enter it I usually work on two or three windows at the same time and this function usually works, but I can't use it for the second or third time. Can I recover closed windows? I will be grateful for your help Best regards, Paweł U

Otázku položil(a) bthd Pred 1 týždňom

Na otázku odpovedal(a) cor-el Pred 1 týždňom