Ceisteanna leis an gclib seo á dtaispeáint: Taispeáin gach ceist
  • Réitithe
  • Cartlannaithe

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 … (tuilleadh eolais)

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]

Asked by klaus178 2 bhliain ó shin

Answered by klaus178 2 bhliain ó shin

  • Réitithe
  • Cartlannaithe

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, … (tuilleadh eolais)

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

Asked by metaguy 1 bhliain ó shin

Answered by zeroknight 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

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… (tuilleadh eolais)

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?

Asked by alannsandiego 1 bhliain ó shin

Answered by alannsandiego 1 bhliain ó shin

  • Faoi Ghlas
  • Cartlannaithe

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… (tuilleadh eolais)

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.

Asked by SuMo Bot 3 bliana ó shin

Last reply by BarbaraML 3 bliana ó shin

  • Réitithe
  • Cartlannaithe

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… (tuilleadh eolais)

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

Asked by Slouch 1 bhliain ó shin

Answered by cor-el 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

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… (tuilleadh eolais)

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

Asked by Slouch 1 bhliain ó shin

Answered by Slouch 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

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… (tuilleadh eolais)

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.

Asked by EF80 6 mhí ó shin

Answered by TyDraniu 6 mhí ó shin

  • Réitithe
  • Cartlannaithe

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… (tuilleadh eolais)

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

Asked by Adin 6 mhí ó shin

Answered by jscher2000 - Support Volunteer 6 mhí ó shin

  • Réitithe
  • Cartlannaithe

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? … (tuilleadh eolais)

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?

Asked by fluffq3 1 bhliain ó shin

Answered by fluffq3 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

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… (tuilleadh eolais)

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?

Asked by kerryn11 1 bhliain ó shin

Answered by kerryn11 1 bhliain ó shin

  • Réitithe

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… (tuilleadh eolais)

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.

Asked by aandersonjr 2 mhí ó shin

Answered by James 2 mhí ó shin

  • Réitithe
  • Cartlannaithe

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… (tuilleadh eolais)

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?

Asked by pjcoomb 1 bhliain ó shin

Answered by pjcoomb 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

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 … (tuilleadh eolais)

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.

Asked by jenna 1 bhliain ó shin

Answered by jenna 1 bhliain ó shin

  • Réitithe
  • Cartlannaithe

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? … (tuilleadh eolais)

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?

Asked by anedy 9 mí ó shin

Answered by Paul 9 mí ó shin

  • Réitithe
  • Cartlannaithe

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… (tuilleadh eolais)

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

Asked by jpnyc 1 bhliain ó shin

Answered by cor-el 1 bhliain ó shin

  • Réitithe

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… (tuilleadh eolais)

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

Asked by Amylogamy 4 mhí ó shin

Answered by Denys 3 mhí ó shin