Afficher les questions étiquetées : Afficher toutes les questions

How to permanently disable update notifications in Firefox

I have automatic updates turned off in Firefox, however, the browser will periodically pop up a window in the top right corner, upon firefox startup, asking me if I wish … (lire la suite)

I have automatic updates turned off in Firefox, however, the browser will periodically pop up a window in the top right corner, upon firefox startup, asking me if I wish to update.

How can I permanently stop this window from appearing?

This pop-up window is a problem because the situation is occurring on the PC of my mother, who is elderly. If she accidentally closes the pop-up in the wrong way, by clicking on the "update" option, the next time Firefox starts it will attempt to update and open a new Windows security window asking for an administrator password, which she doesn't have. This leads to confusion and she is then unable to operate the PC, which can be a health and safety risk.

tl;dr : Please add an option for permanently disabling this update notification pop-up window because it is a safety risk.

Demandé par markb77 il y a 1 heure

Dernière réponse par zeroknight il y a 13 minutes

My 1Password extension (desktop app required) has stopped working in Firefox

Firefox 114.0, Windows 11 Home Version 10.0.22621 Build 22621 , 1Password-4.6.2.626 extension Today, for reasons unknown, my 1Password extension, (an old and non-updatab… (lire la suite)

Firefox 114.0, Windows 11 Home Version 10.0.22621 Build 22621 , 1Password-4.6.2.626 extension

Today, for reasons unknown, my 1Password extension, (an old and non-updatable version that I've used for many, many years), is non-responsive. The icon still resides in the Tool Bar, Windows ToolTips "sees" it as "1Password", but clicking on the icon has no effect. The extension is shown as Enabled in Firefox's Manage Your Extensions page.

I think I've tried all the "usual" things here: rebooted the computer, uninstalled and re-installed the extension and rebooting, checked the setting in 1Password itself to see that it's associated with "Mozilla Firefox 114.0", (the program still opens fine outside the browser).

This seems to be related to Firefox 114.0. On my other computer with the same Windows 11 version but using Firefox 113.0.1 had no problem with 1Password, but as soon as Firefox updated to 114.0 the same problem with 1Password appeared.

Anything that I might be able to do to get 1Password working?

Demandé par Tom_Young il y a 3 mois

Dernière réponse par Kay Melchor il y a 2 heures

userChrome.css — I've blundered!

See reddit post— no way I'm typing all that again! Reddit Post It's not that long, trust me— it's just that the code is long... I've attached a slightly different scree… (lire la suite)

See reddit post— no way I'm typing all that again! Reddit Post It's not that long, trust me— it's just that the code is long... I've attached a slightly different screenshot to the one I posted on the reddit post, but it makes no difference if you see one or the other, or both!

In summary, I've added a css code to my userChrome.css thingy to move the tabs below the search bar. I was also wondering what the best way to transfer my userChrome.css file + about:config settings over to a new version of Firefox. Due to not being admin of my laptop (I'm running it out of the .dmg file— besides, I always like to keep an older version of Firefox as a fallback), I have to install a whole new version of Firefox onto my laptop to update.

Thanks!

Demandé par ctan24 il y a 11 heures

Dernière réponse par ctan24 il y a 6 heures

  • Résolu
  • Archivé

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… (lire la suite)

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.

Demandé par Blacklisted il y a 2 ans

Réponse de DB-1 il y a 2 ans

Bookmarks can't scroll below taskbar

Ever since I migrated to Windows 11, I've been having problems. The Bookmarks pulldown menu is VERY widely spaced vertically compared to Windows 7, and I have so many bo… (lire la suite)

Ever since I migrated to Windows 11, I've been having problems. The Bookmarks pulldown menu is VERY widely spaced vertically compared to Windows 7, and I have so many bookmarks, I have to scroll down below the level of the taskbar at the bottom of the screen to reach them all. I was cleaning up my bookmarks, when I noticed that I moved just enough folders into a Miscellaneous folder at the bottom of the list, that it is just at the level of the taskbar and is hidden beneath it. However, the Bookmarks pulldown thinks it's within the resolution of my screen, so no button for scrolling down appears. Firefox needs to sense the size of the screen ABOVE the level of the taskbar, and place the scroll down button appropriately.

As I finished typing this, though, I went to put in a pic, and now the pulldown menu scroll buttons come up properly (albeit placing them over the level of the taskbar). There's some bug hidden in there that prevented it from working properly for 15 minutes, probably carried over from the Manage Bookmarks menu, because after I was moving folders into the Miscellaneous folder in Manage Bookmarks, it wouldn't allow me to expand the Miscellaneous folder to see the folders I moved were actually moved in there, and F5 (refresh) didn't work. That's probably why the scroll buttons didn't come up. The Manage Bookmarks needs a Refresh button at the very least.

Also, if there's any way to make the spacing between bookmarks configurable (like with a single-spaced option instead of the 1.x spacing currently being used), that would be great, and I could put my old bookmarks back where they belong. Always remember, instead of just changing things, keep the old setting and make a selectable option out of it. If it's a Microsoft issue, you need to figure out a workaround. When you're dealing with a 4K desktop, like I am, big changes are REALLY big. Thanks in advance.

Demandé par Browzilla il y a 19 heures

Dernière réponse par cor-el il y a 13 heures

  • Résolu

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… (lire la suite)

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.

Demandé par gjensse il y a 4 jours

Réponse de TyDraniu il y a 4 jours

Remove border between tabbar and urlbar

Firefox 115.3.0 esr has a border between the tabbar and the urlbar, how to I remove it? I have tried border: none !important; in several locations in userChrome.css … (lire la suite)

Firefox 115.3.0 esr has a border between the tabbar and the urlbar, how to I remove it? I have tried border: none !important; in several locations in userChrome.css that I used for FF 102 esr and the border was removed.

Demandé par disqus4190 il y a 1 jour

Dernière réponse par Terry il y a 1 jour

  • Verrouillé

NEW: reorder icons in add-on bar, FF 118

New Answer to Old Question: FF 118.0.1 Snap for Ubuntu 22.04.3 LTS, Try FF Hamburger Menu > More Tools > Customize toolbar > Cursor NOW Becomes Hand tool. Move … (lire la suite)

New Answer to Old Question: FF 118.0.1 Snap for Ubuntu 22.04.3 LTS, Try FF Hamburger Menu > More Tools > Customize toolbar > Cursor NOW Becomes Hand tool. Move Icons, Select: Done in lower Rt Corner and Enjoy. Seems to Hold After Reboot.

Know this not a Q. But couldn't find info anywhere else. Now more know. Tnx

Demandé par user747161 il y a 1 jour

Where is my separate STOP and RELOAD button

There used to be a solution via userChrome.css: /* separate stop and reload buttons */ reload-button, #stop-button { display: -moz-box !important; } The ab… (lire la suite)

There used to be a solution via userChrome.css:

/* separate stop and reload buttons */

  1. reload-button, #stop-button {
 display: -moz-box !important;

}

The above workaround no longer provides separate stop and reload buttons on the browser in the latest version of firefox.

Demandé par jerriy il y a 2 jours

Dernière réponse par Terry il y a 1 jour

Show tab previews?

Can I get an explanation for what this does link text Is it supposed to do something different than the windows taskbar mouse thumbnail link text I saw no difference … (lire la suite)

Can I get an explanation for what this does

link text

Is it supposed to do something different than the windows taskbar mouse thumbnail

link text

I saw no difference when enabled.

Demandé par noel_envode il y a 6 jours

Dernière réponse par noel_envode il y a 1 jour

HIde pinned tabs problem

I was set up, in myuserchrome.css, to hide my pinned tabs on the tab bar, allowing them to still be available in the "List all tabs" menu, see first image .tabbrowser-ta… (lire la suite)

I was set up, in myuserchrome.css, to hide my pinned tabs on the tab bar, allowing them to still be available in the "List all tabs" menu, see first image

.tabbrowser-tab[pinned="true"] { display: none !important;}

All of a sudden, it reverted back

That first image, with the hidden tabs, is actually from Librewolf, with has the identical setting.

Demandé par noel_envode il y a 5 jours

Dernière réponse par noel_envode il y a 1 jour

Firefox Fullpage Translation

Hello, How can I switch of the annoying new Firefox Fullpage Translations? It intrusively ask me each time a browse a new page. I do not need it nor do not want it. I ca… (lire la suite)

Hello,

How can I switch of the annoying new Firefox Fullpage Translations? It intrusively ask me each time a browse a new page. I do not need it nor do not want it. I cannot find a way to switch it off.... Mant thanks for your help. Christian

Demandé par christian.haltern il y a 1 jour

Dernière réponse par zeroknight il y a 1 jour