A mostrar questões marcadas: Mostrar todas as questões
  • Arquivadas

Why am I suddenly unable to access websites that I have used for years with no problem. What is going on. I cannot, for example, go to my Facebook page, and I've had trouble accessing my email. What the heck is going on?

I am suddenly unable to access websites, some of which I've viewed for years, like Facebook and my email, for Pete's sake. What is going on? I'm told there's a security… (ler mais)

I am suddenly unable to access websites, some of which I've viewed for years, like Facebook and my email, for Pete's sake. What is going on? I'm told there's a security risk and there's nothing I can do. What has changed. This is distressing in the extreme. I have put virus protection in place, and use a VPN, so I feel reasonably secure in my online work. Something has changed at Firefox, what the heck is it, and how do I correct it?

Colocada por em7 1 ano atrás

Última resposta por cor-el 1 ano atrás

  • Arquivadas

Tabs on bottom is Tabs below URL and Bookmarks multi line?

Besides old content from 2017 where is the most current listing of Tabs below the URL and below the Multi Bookmarks lines. I have the code inserted in the CSS code after… (ler mais)

Besides old content from 2017 where is the most current listing of Tabs below the URL and below the Multi Bookmarks lines. I have the code inserted in the CSS code after the code for the Multi bookmarks section. So, why is the Tabs showing up at the bottom of the screen. Can someone point me to the right version of tabs? I'm on 105.0.2 10-8-22

/* TABS: bottom - Firefox 65 and newer; should for now work with XUL @namespace */
/*  https://support.mozilla.org/en-US/questions/1274416  Github  10/8/22  */
@import url("tabs-on-bottom.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

tabs-on-bottom.css working code for Firefox 71 posted in this thread.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* TABS: below navbar - Firefox 65-89+,95+,106+,108+ */

/* #SXRR#/source/browser/themes/shared/tabs.inc.css */
/* #GHC#/Aris-t2/CustomCSSforFx/blob/master/classic/css/tabs/tabs_below_navigation_toolbar_fx89.css */

/* ROOT: VARS */
*|*:root {
  --tab-toolbar-navbar-overlap: 0px !important;

  --tab-min-height: 26px !important;
  --tab-min-width:  60px !important; /*minimum:50px*/
/*  --tab-overflow-pinned-tabs-width: 175px */

  --tabbar-adjust:  0px;
  --tabbar-caption: 0px;

  --tabbar-caption-padding:  90px;
  --tabbar-controls-padding: 90px;
}

/* TABS: below nav-bar */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group: 10 !important;}
#TabsToolbar {-moz-box-ordinal-group: 1000 !important;}

/* TABS: POSITION */
#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0;
  width: 100vw !important;
}

/* Firefox 107 and older *//* #tabbrowser-tabs { width: 100vw !important; } */

/* navigator-toolbox: PADDING */
*|*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
  position: relative !important; /*89*/
  padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*ADJUST*/
  background-color: var(--toolbar-bgcolor) !important;
}

/* TABS: menubar,titlebar hidden - 65-73 *//*
*|*:root[tabsintitlebar]:not([inFullscreen="true"]):not([sizemode="maximized"])
 #toolbar-menubar[autohide="true"] ~ #TabsToolbar{
  bottom: var(--tabbar-adjust) !important; /*ADJUST*/
}
*/

/* TABS: HEIGHT */
#tabbrowser-tabs,
#xtabbrowser-arrowscrollbox,
#xtabbrowser-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;
}

/* DRAG SPACE */
.titlebar-spacer[type="pre-tabs"],
.titlebar-spacer[type="post-tabs"] {
  width: 20px !important;
}

/* TABS: movingtab - vertical shifts */
#navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
  padding-bottom: unset !important;
}

#navigator-toolbox[movingtab] #tabbrowser-tabs {
  padding-bottom: unset !important;
  margin-bottom:  unset !important;
}

#navigator-toolbox[movingtab] > #nav-bar {
  margin-top: unset !important;
}

/* INDICATORS - POSITION */
*|*:root[privatebrowsingmode=temporary] .private-browsing-indicator {
  display: block !important;
  position: absolute !important;
  bottom: 0px !important;
  right: 0px !important;
  width: 14px !important;
  pointer-events: none !important;
}

/* INDICATORS - HIDE */
*|*:root:not([accessibilitymode])             .accessibility-indicator    {display: none !important}
*|*:root:not([privatebrowsingmode=temporary]) .private-browsing-indicator {display: none !important}

/* If you want to have the caption buttons visible on the Tab bar with the Menu bar and Title bar hidden then use this code as a start to replace the above posted "caption buttons - hide" rule. The caption button are positioned absolutely via a top property, so this is affected by the Bookmarks Toolbar (PersonalToolbar) being visible or hidden. Use either of the two "--personal-toolbar-height" settings that apply to the state (collapsed/hidden) of the Bookmarks Toolbar. */

/* caption buttons - PersonalToolbar hidden/visible */
*|*:root {
 --personal-toolbar-height: 0px !important;   /*PersonalToolbar hidden*/
 --personal-toolbar-height: 24px !important;  /*PersonalToolbar visible*/
 --caption-buttons-adjust: -12px !important;  /*caption buttons - vertical adjustment*/
}

*|*:root[tabsintitlebar]:not([inFullscreen="true"]) #toolbar-menubar[autohide="false"]
 ~ #TabsToolbar .titlebar-buttonbox-container {
  position: fixed !important;
  display: block !important;
  right: 0 !important;
  top: calc(var(--tab-min-height) + var(--personal-toolbar-height) + var(--caption-buttons-adjust));
  visibility: visible !important;
  height: var(--tab-min-height) !important;
}

/* caption buttons - HEIGHT and WIDTH */
.titlebar-buttonbox-container toolbarbutton {
  height: var(--tab-min-height) !important;
  margin: 0px -5px 0px -5px !important;
  padding: 0 !important;
}

/* caption buttons - PADDING - reserve space on Tab bar */
*|*:root[tabsintitlebar]:not([inFullscreen="true"])
 #toolbar-menubar[autohide="true"] ~
  #TabsToolbar {
   padding-right: 100px !important; /*adjust*/
}

Colocada por Simson FireFox 1 ano atrás

Última resposta por cor-el 1 ano atrás

  • Arquivadas

Does Firefox need to download every PDF that is viewed on internet?

We have our downloads set to a network location, and ask to save in location. We have needed to apply the fix I found in a forum by going to about:config, browser.downloa… (ler mais)

We have our downloads set to a network location, and ask to save in location. We have needed to apply the fix I found in a forum by going to about:config, browser.download.improvements_to_download_panel and change value from true to false.

However, when even going to a PDF on the internet, it is automatically saving to the network location. Can this be changed?

Thank you! Nicole

Colocada por nicole43 1 ano atrás

Última resposta por James 1 ano atrás

  • Resolvido
  • Arquivadas

dropdown lists not displaying contents when selected (Firefox for Fedora Linux 105.0.2)

Dropdown lists are not displaying their contents when selected on certain websites, including eBay. I have tried using Troubleshoot Mode and the dropdowns are still not… (ler mais)

Dropdown lists are not displaying their contents when selected on certain websites, including eBay.

I have tried using Troubleshoot Mode and the dropdowns are still not displaying.

Here's an example where I am seeing this behaviour: https://www.ebay.co.uk/itm/255536264049?var=555488018135

When I select the Resistance Level dropdown, nothing happens. It's the same for any listing that has a dropdown.

This issue occurs in both RPM and Flatpak instances of Firefox.

I have tried the same page in Chromium browser on the same computer and the dropdown functions correctly in that browser.

I have also noted the same behaviour on other websites, such as train booking sites, but I don't have any other examples to share at the moment. It isn't an isolated eBay issue anyway.

Any ideas? Is anyone else experiencing this issue?

Colocada por greg_stedman 1 ano atrás

Respondida por greg_stedman 1 ano atrás

  • Resolvido
  • Arquivadas

Nightly/dark mode settings in firefox

Hi Firefox community, Do we have any settings in firefox where we can enable/disable dark mode in firefox browser instead of installing a plugin or addon? I am looking s… (ler mais)

Hi Firefox community,

Do we have any settings in firefox where we can enable/disable dark mode in firefox browser instead of installing a plugin or addon? I am looking something that is offered within the browser instead of a plugin.

Thank you all.

Colocada por Uday Kumar 1 ano atrás

Respondida por TyDraniu 1 ano atrás

  • Arquivadas

Firefox 105 update corrupts places.sqlite

Auto-updated to v105 today (105.0.2 64-bit Windows 10) and all bookmarks were gone. Not just gone but the bookmark manager seems not to be rendering properly (see attache… (ler mais)

Auto-updated to v105 today (105.0.2 64-bit Windows 10) and all bookmarks were gone. Not just gone but the bookmark manager seems not to be rendering properly (see attached image where there should be at least some elements drawn). Additionally, neither the bookmarks nor history left pane show anything (second attachment).

The 105 update was applied this morning when first opening the browser. Profile folder -> bookmarkbackups shows a backup from just before the update. Bookmark library -> Restore gives that backup as an option, but restoring that backup has no effect (does nothing).

Exiting Firefox and manually moving places.sqlite to a backup location and then restarting also has no effect. places.sqlite is rebuilt but library -> restore still has no effect.

Colocada por tikkoneus 1 ano atrás

Última resposta por tikkoneus 1 ano atrás

  • Resolvido
  • Arquivadas

Overlapping text

I've read the forums, i've tried adjustments for days on Win 11 and firefox. Zoomed in zoomed out, adjust font sizes Either it's way too tiny to read or the page is fine… (ler mais)

I've read the forums, i've tried adjustments for days on Win 11 and firefox. Zoomed in zoomed out, adjust font sizes Either it's way too tiny to read or the page is fine but text over laps i've tried the zoom in on text only as well Basically tried everything. enclosing a youtube page for reference

Colocada por cyntaur 1 ano atrás

Respondida por cor-el 1 ano atrás

  • Resolvido
  • Arquivadas

Issue Policy ExtensionSettings - Lang pack

Hello, I'm trying to deploy Firefox with several languages. I followed the guide on [https://support.mozilla.org/en-US/kb/deploying-firefox-language-packs]. Everything… (ler mais)

Hello,

I'm trying to deploy Firefox with several languages.

I followed the guide on [https://support.mozilla.org/en-US/kb/deploying-firefox-language-packs].

Everything work fine until I set up ExtensionSettings policy. This policy hide and block languages menu.

After scratching my head for a while, I finally figured out how to do it. I would to like to know if an easier way to whitelist all locales and dictionaries. I would like to only control the extensions.

<enabled/> <data id="ExtensionSettings" value=' {

 "*": {
   "blocked_install_message": "Blocked by your administrator.",
   "installation_mode": "blocked",
   "allowed_types": ["extensions", "dictionary", "locale"]
 },
 "uBlock0@raymondhill.net": {
   "installation_mode": "force_installed",
   "install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"
 },

"qwantcomforfirefox@jetpack": {

   "installation_mode": "force_installed",
   "install_url": "https://addons.mozilla.org/firefox/downloads/file/3658805/latest.xpi"

}, "langpack-en-CA@firefox.mozilla.org": {

 "installation_mode": "allowed"

}, "langpack-en-GB@firefox.mozilla.org": {

 "installation_mode": "allowed"

}, "langpack-en-US@firefox.mozilla.org": {

 "installation_mode": "allowed"

}, "langpack-es-AR@firefox.mozilla.org": {

 "installation_mode": "allowed"

}, "langpack-es-CL@firefox.mozilla.org": {

 "installation_mode": "allowed"

}, "langpack-es-ES@firefox.mozilla.org": {

 "installation_mode": "allowed"

}, "langpack-es-MX@firefox.mozilla.org": {

 "installation_mode": "allowed"

}, "langpack-fr@firefox.mozilla.org": {

 "installation_mode": "allowed"

}, "langpack-pt-BR@firefox.mozilla.org": {

 "installation_mode": "allowed"

}, "langpack-pt-PT@firefox.mozilla.org": {

 "installation_mode": "allowed"

} }'/>

Thank you

Colocada por yann.yong 1 ano atrás

Respondida por Mike Kaply 1 ano atrás

  • Resolvido
  • Arquivadas

Firefox do not open You-Tube-Videos

Hello, I use Firefox 105 on my PC. I have embedded various YouTube videos on my website. I've had the following problem for a few days: I can see my videos on both my s… (ler mais)

Hello, I use Firefox 105 on my PC. I have embedded various YouTube videos on my website. I've had the following problem for a few days: I can see my videos on both my smartphone and tablet without going to YouTube. On my PC (Win 10 Pro Vers. 21H2) the display wheel "rolls" without opening the video (... "an error has occurred, try again later"). But if I click on: "Watch on YouTube" plays the video via YouTube correctly. Does anyone have any idea what might be causing this? Is there a wrong setting in the Firefox browser? Many thanks and best regards Helmut

Colocada por firefox2038 1 ano atrás

Respondida por petergroft 1 ano atrás

  • Arquivadas

youtube short links open the wrong videos

Every time I open a link in firefox that is a youtube short, it opens up an entirely different short than I selected unless I am using a "full video" version of the link.… (ler mais)

Every time I open a link in firefox that is a youtube short, it opens up an entirely different short than I selected unless I am using a "full video" version of the link. I have tested this and it works fine if I copy-paste it into chrome.

Colocada por Moon 1 ano atrás

Última resposta por Booblla 1 ano atrás

  • Arquivadas

Site recovered ... but I still cannot access them? HELP!

https://www.nhlottery.com Recently, https://www.nhlottery.com had experienced a hostile act & then shut down their site. They were super great at being transparent… (ler mais)

https://www.nhlottery.com

Recently, https://www.nhlottery.com had experienced a hostile act & then shut down their site. They were super great at being transparent, etc. However, as of today, staff have reported it is up and running with no risk.

I have an account that I am unable to access due to browsers reporting security issues. I don't know what to do? Im sooooooo not a techie, but I can follow directions. Help! ST

Colocada por Terzakis & Associates 1 ano atrás

Última resposta por jonzn4SUSE 1 ano atrás

  • Arquivadas

Discord Problems.

I can't use my mic on the web version of Discord. It never asks me to enable or disable mic settings to allow the mic to work. Other tips to get the mic working have not … (ler mais)

I can't use my mic on the web version of Discord. It never asks me to enable or disable mic settings to allow the mic to work. Other tips to get the mic working have not helped.

Colocada por cartergamegeek 1 ano atrás

Última resposta por cartergamegeek 1 ano atrás

  • Resolvido
  • Arquivadas

Opening a Tweet in a new tab without switching to it

I just made the switch from Chrome to Firefox, and I'm still trying to understand the small differences that exist between the 2 browsers. While on Twitter, what I usual… (ler mais)

I just made the switch from Chrome to Firefox, and I'm still trying to understand the small differences that exist between the 2 browsers.

While on Twitter, what I usually do is middle-click with my mouse on a Tweet to a new tab that I want to look into later, then continue scrolling down my timeline, then check out the Tweets I opened in the new tab(s). However, when I try to do the same thing on Firefox, it automatically opens the new tab. Because of how Twitter works, this also reloads the Home page when I opened it up, so I just lose anything I was just looking at when I opened the Tweet in a new tab.

What can I do differently here?

Colocada por terriermon50 1 ano atrás

Respondida por jscher2000 - Support Volunteer 1 ano atrás

  • Arquivadas

Mozilla Browser updated yesterday... missing all logins/passwords...sync is on... !!

on a MAC LAPTOP....Mozilla Browser updated yesterday... missing all logins/passwords...sync is on... how can I retrieve the old mozilla for logins? HELP PLEASE..!!! … (ler mais)

on a MAC LAPTOP....Mozilla Browser updated yesterday... missing all logins/passwords...sync is on... how can I retrieve the old mozilla for logins?

HELP PLEASE..!!!

Colocada por MsTee 1 ano atrás

Última resposta por cor-el 1 ano atrás

  • Arquivadas

firefox will not fully close after windows update 22621

I installed the new Windows 11 update now when I exit out of firefox "X" the next time I go to open and error tells me that firefox is running (it's not showing open and … (ler mais)

I installed the new Windows 11 update now when I exit out of firefox "X" the next time I go to open and error tells me that firefox is running (it's not showing open and running) and I have to close.

Colocada por tbryant62256 1 ano atrás

Última resposta por jonzn4SUSE 1 ano atrás

  • Arquivadas

"open previous windows and tabs" no longer works.

I recently updated to windows 11 and now when I open firefox my tabs are no longer there. I have repeatedly gone into settings and checked "open previous windows and tabs… (ler mais)

I recently updated to windows 11 and now when I open firefox my tabs are no longer there. I have repeatedly gone into settings and checked "open previous windows and tabs". Dosnt work. Still opens to a blank browser with only one 'new tab' present. Most troublesome since having my tabs for my email addresses, calender and google keep come up each time is a big time saver for me. Ive been doing this for years and thanked mozilla silently many times for this. But now Whats Up???

Hope someone can help. I see it was posted last year but none of the response makes sense/applies to me.

Colocada por lk3w99 1 ano atrás

Última resposta por lk3w99 1 ano atrás