Showing questions tagged: اعرض كل الأسئلة
  • حُلّت
  • المُؤرشفة

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, … (read more)

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 year ago

Answered by zeroknight 1 year ago

  • حُلّت
  • المُؤرشفة

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 … (read more)

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 years ago

Answered by klaus178 2 years ago

  • حُلّت
  • المُؤرشفة

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… (read more)

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 year ago

Answered by alannsandiego 1 year ago

  • Locked
  • المُؤرشفة

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… (read more)

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 years ago

Last reply by BarbaraML 3 years ago

  • حُلّت
  • المُؤرشفة

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… (read more)

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 year ago

Answered by cor-el 1 year ago

  • حُلّت
  • المُؤرشفة

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… (read more)

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 year ago

Answered by Slouch 1 year ago

  • حُلّت
  • المُؤرشفة

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… (read more)

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 months ago

Answered by TyDraniu 6 months ago

  • حُلّت
  • المُؤرشفة

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… (read more)

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 months ago

Answered by jscher2000 - Support Volunteer 6 months ago

  • حُلّت
  • المُؤرشفة

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? … (read more)

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 year ago

Answered by fluffq3 1 year ago

  • حُلّت
  • المُؤرشفة

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… (read more)

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 year ago

Answered by kerryn11 1 year ago

  • حُلّت
  • المُؤرشفة

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… (read more)

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 year ago

Answered by pjcoomb 1 year ago

  • حُلّت

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… (read more)

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 months ago

Answered by James 2 months ago

  • حُلّت
  • المُؤرشفة

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? … (read more)

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 months ago

Answered by Paul 9 months ago

  • حُلّت
  • المُؤرشفة

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 … (read more)

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 year ago

Answered by jenna 1 year ago

  • حُلّت
  • المُؤرشفة

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… (read more)

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 year ago

Answered by cor-el 1 year ago