Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo

Firefox Dev Tools doesn't show css changes after closing and re-opening dev tools

Steps to recreate: Open any website Make any css changes. These will be shown in the Changes tab in the dev tools Close dev tools, then re-open. Now those changes… (funda kabanzi)

Steps to recreate:

  1. Open any website
  2. Make any css changes. These will be shown in the Changes tab in the dev tools
  3. Close dev tools, then re-open. Now those changes won't be shown

Sometimes I need to close dev tools in order to see how the web page would look normally.

Asked by gurungsujal 4 izinyanga ezidlule

Last reply by jscher2000 - Support Volunteer 4 izinyanga ezidlule

Passwords not restoring

I have tried every support advice I can find and no matter what I do passwords are not restoring. Here is what I have done: Opened about:profiles Opened profile folder Ex… (funda kabanzi)

I have tried every support advice I can find and no matter what I do passwords are not restoring. Here is what I have done: Opened about:profiles Opened profile folder Exit firefox transfer key4.db and signons.jstor files from backup to the new folder

Nothing happens.

I have tried creating new folders and following those steps. I have tried everything.

Asked by robin.maxim 2 emasontweni adlule

Last reply by jscher2000 - Support Volunteer 2 emasontweni adlule

Firefox Cache Management and New Tab Behavior Improvement Request

Hi all, I’ve been using Firefox for a while now, but coming from Chrome, I’m finding some aspects of Firefox’s cache management and tab behavior a bit inconvenient, and … (funda kabanzi)

Hi all,

I’ve been using Firefox for a while now, but coming from Chrome, I’m finding some aspects of Firefox’s cache management and tab behavior a bit inconvenient, and I wanted to share my thoughts.

The issue:

When I restart Firefox (version 133.0.3-1), it loads webpages from the disk cache, which is fine because I’ve set browser.cache.disk.enable to true and browser.cache.check_doc_frequency to 2, it will always make a request to the server on restarting Firefox with the default value of 3. However, the problem arises when I open new tabs — they also load from the disk cache instead of requesting fresh content from the server.

What I’m looking for:

   A way to have Firefox:

Load webpages from the disk cache when restarting the browser (which I want, and I have set browser.cache.disk.enable to true for this). But always make fresh requests from the server when opening new tabs, no matter what the cache settings are.

In Chrome, this behavior is more intuitive — it loads from the cache after restart but always fetches from the server for new tabs, which I find to be much more reasonable.

I understand that about:config provides settings like browser.sessionstore.restore_on_demand, but adjusting this option makes Firefox fetch content from the server for all tabs, including those opened after a restart. This doesn’t seem like a perfect solution because it takes away the ability to use the disk cache after restarting the browser.

I would really appreciate it if Firefox could offer more granular control over this behavior, so users could get the benefits of both caching and real-time requests based on the type of tab (restart vs. new tab).

Thanks for your attention, and I hope to see some improvements in future updates!

Asked by Universe 4 izinyanga ezidlule

Last reply by hyperinterceptor 4 izinyanga ezidlule

How to disable the Enterprise Roots preference

https://support.mozilla.org/en-US/kb/how-disable-enterprise-roots-preference Hi. I have followed the instructions on the Mozilla site above however this does not work. T… (funda kabanzi)

https://support.mozilla.org/en-US/kb/how-disable-enterprise-roots-preference

Hi. I have followed the instructions on the Mozilla site above however this does not work. The Enterprise Roots keep reloading after a while.

Any idea how to stop this happening?

I have read many articles on this but nothing works. The E Roots will in initially not reload but eventually after a day or three its back.

Many thanks

Asked by DK2025 4 izinyanga ezidlule

Last reply by DK2025 4 emasontweni adlule

Tab Tooltips Not Showing Up

Hello, I have been experiencing this issue for a while, but only just now noticed it. When I hover over a tab, nothing shows up; no preview, no title, no web address, n… (funda kabanzi)

Hello,

I have been experiencing this issue for a while, but only just now noticed it. When I hover over a tab, nothing shows up; no preview, no title, no web address, nothing. I have a few extensions, but uninstalled any that would effect tabs at all, with no change. All other extensions I have had since I switched over to Firefox. I have attempted to search for solutions, and have followed what I found. Multiple support questions here have gotten the answer of going into the config to change the following Boolean variables to be true:

   browser.tabs.hoverPreview.enabled 
   browser.tabs.hoverPreview.showThumbnails 

but when I went to do so, they were both already set to true. I disabled and then re-enabled them just to check, but nothing changed. I have a ridiculous amount of tabs open, but that's the only other thing I can think of that would be causing this issue. Just in case, I am in the process of closing as many as I can.

Any advice or assistance would be appreciated.

Thank you.

Asked by naturegeek00 4 izinyanga ezidlule

Last reply by cor-el 4 izinyanga ezidlule

Unable to show File Picker (continued) and my solution

I had the same problem as, for example, this: https://support.mozilla.org/en-US/questions/1375244 firefox (on linux) was unable to open a file browser to the local fi… (funda kabanzi)

I had the same problem as, for example, this:

 https://support.mozilla.org/en-US/questions/1375244

firefox (on linux) was unable to open a file browser to the local filesystem on clicking a website-provided button for file uploads, e.g. here https://video-converter.com/

I have seriously messed up with firefox settings over the years in order to safeguard my privacy, against all the attempts by firefox to infringe it. (Admitteddly, not as much as google chrome, safari and, got forbid, m$ edge). One of these fixes was to link the file/database content-prefs.sqlite (found in my firefox profile dir) to /dev/null. It was this that caused a problem with the file browser not showing. WOW!

Once I deleted said file (linking to /dev/null). Firefox started and all was OK wrt the file brower.

That caused me to create a script to be run before and after firefox launch, searching for all these privacy-infringing databases in my profile dir and erasing them.

The steps to this are: 1) edit /usr/share/applications/org.mozilla.firefox.desktop and replace all Exec=firefox entries with Exec=/usr/local/bin/firefox-custom.sh 2) create a new file /usr/local/bin/firefox-custom.sh with this content

  1. !/bin/bash

CMD="firefox" if [ -x ~/bin/firefox-custom.sh ]; then CMD=~/bin/firefox-custom.sh fi echo "$0 : executing firefox with this command :" echo " ${CMD} $*" ${CMD} $*

3) create a ~/bin/firefox-custom.sh file with this content

  1. !/bin/bash

function eras { local f="$1" echo "erasing file '$f' ..." rm -f "${f}" }

echo "$0 : on starting, erasing various sensitive firefox databases ..."

while IFS= read -r afil && -n "$afil" ; do eras "${afil}" done <<< "$(find ~/.mozilla/firefox -type f -name 'content-prefs.sqlite')"

echo "$0 : now executing firefox ..." firefox $*

echo "$0 : on exiting, erasing various sensitive firefox databases ..." while IFS= read -r afil && -n "$afil" ; do eras "${afil}" done <<< "$(find ~/.mozilla/firefox -type f -name 'content-prefs.sqlite')"

lanuching firefox now either from a desktop file (e.g. via Plank launcher) or from the command line: gio launch /usr/share/applications/org.mozilla.firefox.desktop runs the above script before and after firefox running.

Disclaimer: the above script erases files in your profile directory, use at your own risk. Perpahs make a backup copy of your profile dir before.

Asked by xyz123abcf-u-k 2 izinyanga ezidlule

Last reply by xyz123abcf-u-k 2 izinyanga ezidlule

Can't find about:config preferences page

After typing in about:config and clicking on the 3 lines top r.h. corner I'm supposed to get a page that list preferences. (using Wndows 11) That page does not appear. I … (funda kabanzi)

After typing in about:config and clicking on the 3 lines top r.h. corner I'm supposed to get a page that list preferences. (using Wndows 11) That page does not appear. I wish to change my value for width scrollbar width from zero to 4. I have also accessed videos - with sound -but find i very hard to follow the voice of the presenter because he/she talks far too fast, and in many instances is outdated! I need a page on screen that tells me to type in specific keystroke to get to the page that lists a preference I can change.

Asked by Col SARLL 2 izinyanga ezidlule

Last reply by James (On Vacation) 2 izinyanga ezidlule

  • Ikhiyiwe

About:config setting reverts upon Firefox restart

duplicate of /questions/1509077 thread Hi. There is a new feature of Firefox that bothers me. It is when I drag tabs around the top, they try to group when I don't want … (funda kabanzi)

duplicate of /questions/1509077 thread

Hi. There is a new feature of Firefox that bothers me. It is when I drag tabs around the top, they try to group when I don't want them to. So I go to about:config and find the "browser.tabs.groups.enabled" key and set it to false. But when I restart Firefox, the change reverts. How do I fix this so the change stays?

I've already tried going to Menu->Help->More troubleshooting information->Profile Folder->Open folder, but there is no "user.js" file there. Do I have to do a Firefox reset to fix this? I hope not...

Note that I'm pretty sure that other settings that I change do not revert when I restart Firefox. Right now, it seems to be just this one about:config setting, unless the new version of Firefox reverts all manually changed about:config settings upon restart.

Thanx in advance for any help.

Asked by jjbradbury 3 emasontweni adlule

I tried and failed to add Voice Search to Firefox

I tried the following to add voice search to the Firefox browser in Windows. I followed the instructions in the attached but when I open a new tab voice search is not in … (funda kabanzi)

I tried the following to add voice search to the Firefox browser in Windows. I followed the instructions in the attached but when I open a new tab voice search is not in the search bar. I returned to about:config and the two settings = true. Why did it not work as it was supposed to?

A new voice tab opened amongst my open tabs and when I select it, it's Google Voice. I then select for personal use, I then have a choice from Android. iOS and Web. I select Web. It then says Google Voice is not available yet in my country (UK).

I use voice search a lot on my Android phone and tablet and would like to use it in Firefox.

Asked by PhilG 2 izinyanga ezidlule

layout.css.devPixelsPerPx setting

I have to manually change the layout.css.devPixelsPerPx setting evertime I switch from my laptop to an external monitor. What can I do to avoid this every single time? … (funda kabanzi)

I have to manually change the layout.css.devPixelsPerPx setting evertime I switch from my laptop to an external monitor. What can I do to avoid this every single time?

Asked by jessebnd 3 emasontweni adlule

Last reply by jessebnd 3 emasontweni adlule

Tabs Switching

Hello, I have an issue where, when I switch tabs with Ctrl+Tab, my mouse cursor accidentally triggers something if it happens to be in the center. This is very annoying.… (funda kabanzi)

Hello,

I have an issue where, when I switch tabs with Ctrl+Tab, my mouse cursor accidentally triggers something if it happens to be in the center. This is very annoying. I tried Googling how to turn off tab visualization through the config, but it hasn't worked so far.

   * browser.ctrlTab.previews

  • browser.tabs.closeWindowWithLastTab
  • browser.tabs.animate
  • toolkit.cosmeticAnimations.enabled

So now, the only option I see is to turn off Recent Tabs, but then the browser becomes unusable. I also tried the same on a new clean user profile and even on new Mozilla-based browsers, but still nothing. It would be ideal to make the cursor inactive while switching tabs, like it is in Arc Browser and probably many others. But I would be happy enough to just turn off tab switching visualization.

Asked by xuaaru 5 izinyanga ezidlule

Last reply by jscher2000 - Support Volunteer 5 izinyanga ezidlule

Allowing Widows and Orphans

Changing Default Behavior (CSS) When I'm reading on a computer screen, I hatehatehatedespisehatehatehate "widow and orphan" control. This is especially annoying when rea… (funda kabanzi)

Changing Default Behavior (CSS)

When I'm reading on a computer screen, I hatehatehatedespisehatehatehate "widow and orphan" control. This is especially annoying when reading a long narrative passage that reflows so that a break (often a blank paragraph) falls at the bottom or top of a column/page. There are two relevant CSS properties, each taking a nonzero positive integer as an argument:

    widows: [number of lines]
    orphans: [number of lines]

It appears that Firefox has (like most browsers) established a "default" value of 2 in each of these parameters, which seldom appear in site-specific stylesheets. Do Not Want.

Is there a way to change this default behavior to the equivalent of:

    body {
         widows: 1;
         orphans: 1;}

without either (a) breaking anything or (b) having to redo whatever change every time there's a Firefox update?

Asked by Jaws 3 izinyanga ezidlule

Last reply by Jaws 3 izinyanga ezidlule

css code for chrome files no longer works

Recently (around Fx 134) css code for chrome files stopped working. The code I use is set out below. It previously changed the background colour to tan ( #dbc3a3 ), the… (funda kabanzi)

Recently (around Fx 134) css code for chrome files stopped working. The code I use is set out below. It previously changed the background colour to tan ( #dbc3a3 ), the text colour to dark blue ( #000080 ) and the font size to 17 px. The code found at the following location also no longer works for chrome files : https://gist.github.com/MrOtherGuy/c592f6443dd228022966cbe5715ad5c9

@-moz-document url-prefix("about:"), url-prefix("chrome://"), url-prefix("resource://"){

 :root {
     --in-content-page-color: #000080 !important;
     --in-content-text-color: #000080 !important;
     --in-content-page-background: #dbc3a3 !important;
     --in-content-box-background: #e2cfb6 !important;
     --in-content-deemphasized-text: var(--in-content-text-color) !important;
     scrollbar-color: #6495ed #d9d9d9 !important; 
     --background-color-box: var(--in-content-page-background) !important;
     --text-color: var(--in-content-text-color) !important;      
     color:var(--in-content-text-color) !important;
     --background-color-canvas: var(--in-content-page-background) !important;
     --table-row-background-color-alternate: var(--in-content-box-background) !important;    
 menulist > menupopup{ background-color: var(--in-content-page-background) !important; }}}
 

@-moz-document url-prefix("chrome:") {

 html, body, div, h1, p, table, td, tr { background-color: #dbc3a3 !important;
   color: #000080 !important;
   font-size: 17px !important; }
 tr:hover { background-color: #b3d1ff !important; }
 tr.odd:hover { background-color: #b3d1ff !important; }

}

Asked by Terry 2 izinyanga ezidlule

Last reply by Terry 2 izinyanga ezidlule

  • Ikhiyiwe

css code for chrome files no longer works

duplicate of /questions/1498770 thread Recently (around Fx 134) css code for chrome files stopped working. The code I use is set out below. It previously changed the b… (funda kabanzi)

duplicate of /questions/1498770 thread

Recently (around Fx 134) css code for chrome files stopped working. The code I use is set out below. It previously changed the background colour to tan ( #dbc3a3 ), the text colour to dark blue ( #000080 ) and the font size to 17 px. The code found at the following location also no longer works for chrome files : https://gist.github.com/MrOtherGuy/c592f6443dd228022966cbe5715ad5c9

@-moz-document url-prefix("about:"), url-prefix("chrome://"), url-prefix("resource://"){

 :root {
     --in-content-page-color: #000080 !important;
     --in-content-text-color: #000080 !important;
     --in-content-page-background: #dbc3a3 !important;
     --in-content-box-background: #e2cfb6 !important;
     --in-content-deemphasized-text: var(--in-content-text-color) !important;
     scrollbar-color: #6495ed #d9d9d9 !important; 
     --background-color-box: var(--in-content-page-background) !important;
     --text-color: var(--in-content-text-color) !important;      
     color:var(--in-content-text-color) !important;
     --background-color-canvas: var(--in-content-page-background) !important;
     --table-row-background-color-alternate: var(--in-content-box-background) !important;    
 menulist > menupopup{ background-color: var(--in-content-page-background) !important; }}}
 

@-moz-document url-prefix("chrome:") {

 html, body, div, h1, p, table, td, tr { background-color: #dbc3a3 !important;
   color: #000080 !important;
   font-size: 17px !important; }
 tr:hover { background-color: #b3d1ff !important; }
 tr.odd:hover { background-color: #b3d1ff !important; }

}

Asked by Terry 2 izinyanga ezidlule

Last reply by markwarner22 2 izinyanga ezidlule

Disable Page Caching

I want to disable caching because it seems to cause some webpages and plugins to malfunction, not updating until a manual refresh occurs. The usual method of editing… br… (funda kabanzi)

I want to disable caching because it seems to cause some webpages and plugins to malfunction, not updating until a manual refresh occurs. The usual method of editing…

browser.cache.disk.enable

browser.cache.memory.enable

browser.cache.check_doc_frequency

…does not work.

Toggle Cache plugin had no effect and threw a “cannot edit data on this page” error.

Please, help.

Asked by cdstarker 1 inyanga edlule

how to prevent firefox detecting fullscreen change?

I've got full-screen-api.ignore-widgets = true, so that I can use the f11 key effectively as a "hide-the-toolbar" button. this works nicely since I can still use my windo… (funda kabanzi)

I've got full-screen-api.ignore-widgets = true, so that I can use the f11 key effectively as a "hide-the-toolbar" button. this works nicely since I can still use my window manager's fullscreen shortcut to actually go into fullscreen.

the problem is, whenever I do that, firefox detects the change and then shows/hides the toolbar again accordingly. just wondering if there's any way to stop firefox from detecting fullscreen changes?

I naively turned off exit-on windowOpen & windowRaise, but that had no effect.

any help is appreciated.

Asked by andreiboghean00+mozilla 2 izinyanga ezidlule

Firefox Update Using Internal URL Fails

Hello We have used about:config / app.update.url to change an internal webserver http://<internalserver/firefox This webserver is an IIS server with the latest Firefox… (funda kabanzi)

Hello We have used about:config / app.update.url to change an internal webserver http://<internalserver/firefox This webserver is an IIS server with the latest Firefox EXE (<strong>Firefox_Setup_138.0.exe) on it. It has directory browsing enable and we have confirmed we can see and download the file OK. However, when we perform Help / About, you see Firefox Checking for updates... but then says Failed to check for updates. What are we doing wrong? Where can I check for errors? Thanks

Asked by FJ-DA 3 emasontweni adlule

Keeping a page in focus in the background whilst playing a video game.

Dear support person, When streaming video games on multiple platforms i use a dock from a website called social stream Ninja. This opens a browser page that shows chats … (funda kabanzi)

Dear support person,

When streaming video games on multiple platforms i use a dock from a website called social stream Ninja. This opens a browser page that shows chats from 3 platforms, Twitch, Youtube and Kick. I have a dual PC setup, so i game on the first PC with the second PC running the actual stream through a capture card.

When i go into SteamVR, i add a desktop panel with that exact dock/webpage on firefox, but the page "pauses" and chat doesn't update anymore. I thought this was a focus issue, so i tried this plugin = Always active Window - Always Visible

Sadly FireFox still doesn't update the page, therefore stream chat doesn't show up, the page pauses. A sort of work-around is running the game in borderless window, but this is VR, and eats up quite the bit of performance, fullscreen is preferred. The borderless window works on Assetto Corsa VR, but on Dirt Rally 2 VR it doesn't, so I really need FireFox to update the page in the background.

I've been tearing my hair out trying to find a solution, the 'focus' plugin was my best idea.

Any chance you could help me?

Kind Regards,

Carlo

Asked by CarlosGaemz 2 izinyanga ezidlule