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

Add-on no longer on Toolbar

I'm using the OneTab add-on, Enabled. The icon no longer shows on the Toolbar, though it is on the Menu bar next to Firefox View. I ran Remove and then Added it again, … (ďalšie informácie)

I'm using the OneTab add-on, Enabled. The icon no longer shows on the Toolbar, though it is on the Menu bar next to Firefox View.

I ran Remove and then Added it again, hoping the Toolbar Icon would reappear = no go, And I lost all URLs already saved, stupid me. To be clear, clicking the Icon on the Toolbar saves all open tabs.

Is there a fix via Preferences? Thanks. gw

Otázku položil(a) metaguy Pred 1 rokom

Na otázku odpovedal(a) zeroknight Pred 1 rokom

  • Vyriešené
  • Archivované

Firefox 115.0.2 (64-Bit) on Windows 7

Contrast disappears when I klick 'Login' eg. on 'https://www.elektor.de/'; other browsers are ok. AdGuard on or off makes no difference. Kind Regards [removed email from … (ďalšie informácie)

Contrast disappears when I klick 'Login' eg. on 'https://www.elektor.de/'; other browsers are ok. AdGuard on or off makes no difference. Kind Regards [removed email from public]

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

Na otázku odpovedal(a) klaus178 Pred 2 rokmi

  • Vyriešené
  • Archivované

firefox 115.12esr slow to startup

Firefox 115.12esr slow to startup takes up to 10 second to load the first time now Firefox was fine in version 112.esr. to bad Firefox forces updates, even when the updat… (ďalšie informácie)

Firefox 115.12esr slow to startup takes up to 10 second to load the first time now Firefox was fine in version 112.esr. to bad Firefox forces updates, even when the update make Firefox worse. https://snipboard.io/QF0ERT.jpg of course it works faster without extensions, that does not mean anything. I would reinstall the older version but Mozilla fixed so we cannot. I do not have time to reinstall all the extension so I am left with a useless Firefox. To bad Firefox does not allow reinstall of extension automatically, a reset of Firefox would also make Firefox useless; I am at a loss to how to continue to support Mozilla and not switch to another browser?

Otázku položil(a) alannsandiego Pred 1 rokom

Na otázku odpovedal(a) alannsandiego Pred 1 rokom

  • Uzamknuté
  • Archivované

106.0.2 And Win Explorer

106.0.2 locks up Windows Explorer (Not Responding) on my Win 7 machine as soon as it starts. After restarting Explorer, it seems to continue working. I have seen this is… (ďalšie informácie)

106.0.2 locks up Windows Explorer (Not Responding) on my Win 7 machine as soon as it starts. After restarting Explorer, it seems to continue working. I have seen this issue reported earlier.

Otázku položil(a) SuMo Bot Pred 3 rokmi

Posledná odpoveď od BarbaraML Pred 3 rokmi

  • Vyriešené
  • Archivované

Move Tab Icons (favicons) up 1px

Hi All, For some reason my tab icons look a little low, and I would like them more vertically centered. I've been trying to move these icons around using some older cod… (ďalšie informácie)

Hi All,

For some reason my tab icons look a little low, and I would like them more vertically centered.

I've been trying to move these icons around using some older code that doesn't seem to work anymore.

The code below no longer has any effect.

Does anyone know how to move the tab icons up 1 pixel?

Thanks!

/* padding doesn't move them */
.tab-throbber, .tab-icon-image { padding-bottom: 4px !important; }
/* margin doesn't move them */
.tab-throbber, .tab-icon-image { margin-bottom: -2px !important; }
/* can't even turn the icons off LOL */
.tab-icon-image { display:none !important; }

Otázku položil(a) Slouch Pred 1 rokom

Na otázku odpovedal(a) cor-el Pred 1 rokom

  • Vyriešené
  • Archivované

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… (ďalšie informácie)

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;
}

Otázku položil(a) Slouch Pred 1 rokom

Na otázku odpovedal(a) Slouch Pred 1 rokom

  • Vyriešené
  • Archivované

Stop Firefox showing my location when 'Googling'

Firefox show's my location when 'Googling' In 'about:config' I have my geo set to disable, I tried it enabled and turning it back, also in 'Settings' Location shows empt… (ďalšie informácie)

Firefox show's my location when 'Googling'

In 'about:config' I have my geo set to disable, I tried it enabled and turning it back, also in 'Settings' Location shows empty and I can not get it to see Google nor can I manually insert it.

Any idea what is going on please??

Dave.

Otázku položil(a) EF80 Pred 6 mesiacmi

Na otázku odpovedal(a) TyDraniu Pred 6 mesiacmi

  • Vyriešené
  • Archivované

Change Firefox Account email

HI I want to change my Firefox Account email to a new one because my email [email removed]@gmail.com has been hacked and i want to change it to my new email: [email remov… (ďalšie informácie)

HI I want to change my Firefox Account email to a new one because my email [email removed]@gmail.com has been hacked and i want to change it to my new email: [email removed]@gmail.com

Otázku položil(a) Adin Pred 6 mesiacmi

Na otázku odpovedal(a) jscher2000 - Support Volunteer Pred 6 mesiacmi

  • Vyriešené
  • Archivované

Keyboard shortcut clear cookies

Is there a keyboard shortcut to remove cookies from the website? I mean the page I am currently on. And if there is no such shortcut, can I somehow create one myself? … (ďalšie informácie)

Is there a keyboard shortcut to remove cookies from the website? I mean the page I am currently on. And if there is no such shortcut, can I somehow create one myself?

Otázku položil(a) fluffq3 Pred 1 rokom

Na otázku odpovedal(a) fluffq3 Pred 1 rokom

  • Vyriešené
  • Archivované

Copy and paste problem with screenshot

Just a few days ago, screenshot technique failed. I often copy an image from webpage. Right click technique. I am still able to do this. I have option of copy or Download… (ďalšie informácie)

Just a few days ago, screenshot technique failed. I often copy an image from webpage. Right click technique. I am still able to do this. I have option of copy or Download. Download works but Copy does not. When I try to paste the copy into my Word document, I get a blank image (a square that indicates there was an image but the actual image is not there). How can I get the paste mechanism working again?

Otázku položil(a) kerryn11 Pred 1 rokom

Na otázku odpovedal(a) kerryn11 Pred 1 rokom

  • Vyriešené
  • Archivované

SDD Crash - How to port Mozilla Bookmarks sqlite file to new install

I had a crash on my SSD (WIn7 Ultimate) - " Operating system missing" error. I saved the data and want to reinstall Win 7 and import previous Bookmarks data to new instal… (ďalšie informácie)

I had a crash on my SSD (WIn7 Ultimate) - " Operating system missing" error. I saved the data and want to reinstall Win 7 and import previous Bookmarks data to new install of Moziilla Firefox.

I transferred the sqlite file (s88qn337.default) from the previous install (now non working system) to the existing working Firefox directory (C:/Users/My Name/AppData/Roaming/Firefox/Profiles/xxx.default.

I then renamed "default.XXX.old" (the previous install had only one file in the Profile directory - ie s88qn337.default)

When I try to open Mozilla Firefox, with the single file (s88qn337.default) in the Profile directory, I get the error "Can't find user data".

When I then open fresh install of Mozilla Firefox on working SSD (Win 7 Ultimate) and try to Import Bookmarks, the options are only "Import Bookmarks from Explorer" or "Import from html file".

How to resolve this problem, please?

Otázku položil(a) pjcoomb Pred 1 rokom

Na otázku odpovedal(a) pjcoomb Pred 1 rokom

  • Vyriešené
  • Archivované

Firefox ESR 115.23.0

After the last update Firefox ESR 115.23.0 the menu on the website: https://connect.garmin.com/modern/home is not displayed correctly. Can you fix this? … (ďalšie informácie)

After the last update Firefox ESR 115.23.0 the menu on the website: https://connect.garmin.com/modern/home is not displayed correctly. Can you fix this?

Otázku položil(a) anedy Pred 9 mesiacmi

Na otázku odpovedal(a) Paul Pred 9 mesiacmi

  • Vyriešené
  • Archivované

location detected as being outside USA

On one web site (see attachments), my location is being detected as being outside USA while using firefox desktop browser, yet on the same computer, my location is being … (ďalšie informácie)

On one web site (see attachments), my location is being detected as being outside USA while using firefox desktop browser, yet on the same computer, my location is being correctly detected as being inside USA.

You will see the asian words. When I change the pull dawn tab ("Saudi Arabia") to "USA", the asian lettering does not convert to English.

Not sure how to fix this.

Otázku položil(a) jenna Pred 1 rokom

Na otázku odpovedal(a) jenna Pred 1 rokom

  • Vyriešené

Chase website requires Firefox 128 or higher. Latest update shows Firefox 115.3. Any Solution?

Chase website now requires Mozilla Firefox update 128 or higher to access accounts. My version says my version (115.30) is latest update. Do I need to find a different br… (ďalšie informácie)

Chase website now requires Mozilla Firefox update 128 or higher to access accounts. My version says my version (115.30) is latest update. Do I need to find a different browser or is there a solution? I am using Windows 7 Pro desktop. Thank you.

Otázku položil(a) aandersonjr Pred 2 mesiacmi

Na otázku odpovedal(a) James Pred 2 mesiacmi

  • Vyriešené
  • Archivované

How can I enable sound on pop-up blocked

Is there a way to enable sounds when the built in pop-up blocker blocks a pop-up or make the banner more noticeable? I often dont realize a pop-up has been blocked and ca… (ďalšie informácie)

Is there a way to enable sounds when the built in pop-up blocker blocks a pop-up or make the banner more noticeable? I often dont realize a pop-up has been blocked and cant figure out why I' not getting the new content

Otázku položil(a) jpnyc Pred 1 rokom

Na otázku odpovedal(a) cor-el Pred 1 rokom