Εμφάνιση ερωτήσεων με ετικέτες: Εμφάνιση όλων των ερωτήσεων
  • Επιλύθηκε

No Audio in Firefox only.

There is no audio on any website in Firefox only. I'm using Windows 11 Numbered list item When a video is playing there used to be an audio icon showing the tab is pl… (διαβάστε περισσότερα)

There is no audio on any website in Firefox only. I'm using Windows 11

  1. Numbered list item When a video is playing there used to be an audio icon showing the tab is playing audio, this does not show anymore.
  2. Numbered list item Firefox does not appear in the Windows volume mixer
  3. Numbered list item The Firefox Task Manager Utility 'Windows Media Framework Audio Decoder is always idle.
  4. Numbered list item I've restarted the Windows AudioSrv service and Windows explorer process

Nothing works. Please help.

Ερώτηση από rtwymanjr 1 μήνα πριν

Απάντηση από rtwymanjr 1 μήνα πριν

  • Επιλύθηκε

Tabs on Bottom broke again

Hi Well Firefox did it again. I had tabs on the bottom where I wanted them and they broke this again in the update I just got. Any idea how to move them back down to th… (διαβάστε περισσότερα)

Hi

Well Firefox did it again. I had tabs on the bottom where I wanted them and they broke this again in the update I just got.

Any idea how to move them back down to the bottom? This is the userchrome.css coding I was using that worked fine before the update

@import url(userChrome-color_bookmark_folders_Proton89.css);


/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* Modify to change window drag space width */ /* Use tabs_on_bottom_menubar_on_top_patch.css if you have menubar permanently enabled and want it on top

  • /

/* IMPORTANT */ /* Get window_control_placeholder_support.css Window controls will be all wrong without it. Additionally on Linux, you may need to get: linux_gtk_window_control_patch.css

  • /
root{ --uc-titlebar-padding: 0px; }

@media (-moz-os-version: windows-win10){

root[sizemode="maximized"][tabsintitlebar]{ --uc-titlebar-padding: 8px }

}

  1. toolbar-menubar[autohide="true"] > .titlebar-buttonbox-container,
  2. TabsToolbar > .titlebar-buttonbox-container{

position: fixed; display: block; top: var(--uc-titlebar-padding,0px); right:0; height: 35px; } /* Mac specific. You should set that font-smoothing pref to true if you are on any platform where window controls are on left */ @supports -moz-bool-pref("layout.css.osx-font-smoothing.enabled"){

root{ --uc-titlebar-padding: 0px !important }

.titlebar-buttonbox-container{ left:0; right: unset !important; } }

root[uidensity="compact"] #TabsToolbar > .titlebar-buttonbox-container{ height: 30px }
  1. toolbar-menubar[inactive] > .titlebar-buttonbox-container{ opacity: 0 }
  1. navigator-toolbox{ padding-top: var(--uc-titlebar-padding,0px) !important; }

.titlebar-buttonbox-container > .titlebar-buttonbox{ height: 100%; }

  1. titlebar{

-moz-box-ordinal-group: 2; -moz-appearance: none !important; --tabs-navbar-shadow-size: 0px; }

.titlebar-placeholder,

  1. TabsToolbar .titlebar-spacer{ display: none; }

/* Also hide the toolbox bottom border which isn't at bottom with this setup */

  1. navigator-toolbox::after{ display: none !important; }

@media (-moz-gtk-csd-close-button){ .titlebar-button{ -moz-box-orient: vertical } }

/* These exist only for compatibility with autohide-tabstoolbar.css */ toolbox#navigator-toolbox > toolbar#nav-bar.browser-toolbar{ animation: none; }

  1. navigator-toolbox:hover #TabsToolbar{ animation: slidein ease-out 48ms 1 }

/* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/tabs_on_bottom_menubar_on_top_patch.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */

/* Menubar on top patch - use with tabs_on_bottom.css */ /* Only really useful if menubar is ALWAYS visible */

root{ --uc-window-control-width: 0px !important }
  1. navigator-toolbox{ padding-top: calc(29px + var(--uc-titlebar-padding,0px)) !important }
  1. toolbar-menubar{

position: fixed; display: flex; top: var(--uc-titlebar-padding,0px); height: 25px; width: 100%; overflow: hidden; }

  1. toolbar-menubar > .titlebar-buttonbox-container{ height: 29px; order: 100; }
  1. toolbar-menubar > [flex]{ flex-grow: 100; }
  2. toolbar-menubar > spacer[flex]{

order: 99; flex-grow: 1; min-width: var(--uc-window-drag-space-width,20px); }

  1. toolbar-menubar .titlebar-button{ padding: 2px 17px !important; }
  1. toolbar-menubar .toolbarbutton-1 { --toolbarbutton-inner-padding: 3px }

/* TABS: height */*|*:root { --tab-toolbar-navbar-overlap: 0px !important; --tab-min-height: 20px !important; --tab-min-width: 80px !important;

  1. tabbrowser-tabs {

width: 100vw !important; }

  1. main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}

.tab-background { border-radius: 8px 8px 0px 0px !important; border-image: none !important; } .tab-line { display: none; }

.tab-close-button { color: red!important; }

Ερώτηση από scottish2 4 μήνες πριν

Απάντηση από jscher2000 - Support Volunteer 4 μήνες πριν

  • Επιλύθηκε

How to Hide the Mute Tab Button?

I've tried following both methods for dissabling the mute button on tabs, it's a slight annoyance, since it's easy to accidentally mute a tab when it's pinned. Specifica… (διαβάστε περισσότερα)

I've tried following both methods for dissabling the mute button on tabs, it's a slight annoyance, since it's easy to accidentally mute a tab when it's pinned.

Specifically, the first method I've tried changing the setting in about:config called "browser.tabs.showAudioPlayingIcon" from true to false, which was from 7 years ago it seems, which had no effect.

The second method was by making a new rule in a "userChrome.css" file in a new folder called "chrome" with that exact naming, case sensitive. The code in that file is as follows:

/* Hide the mute/unmute button */
.tab-icon-overlay:not([pinned], [sharing], [crashed]):is([soundplaying], [muted]) {
    display: none !important;
}
/* Keep site icon visible on hover */
.tabbrowser-tab:hover .tab-icon-stack:not([pinned], [sharing], [crashed]):is([soundplaying], [muted]) > :not(.tab-icon-overlay), 
     /* for site icon with Compact density */
:root[uidensity="compact"] .tab-icon-stack:not([pinned], [sharing], [crashed]):is([soundplaying], [muted]) > :not(.tab-icon-overlay) {
    opacity: 1 !important; /* overrides full transparency with full opacity */
}

If there's an updated version of the code that's meant to have that effect in modern firefox, then please let me know, or if there's some other new way of removing the mute button on tabs. Thanks.

Ερώτηση από Tclarke02 5 μήνες πριν

Απάντηση από jscher2000 - Support Volunteer 5 μήνες πριν

  • Επιλύθηκε

Extension Icons not displayed on Toolbar

Hello, Recently I rebuilt my Widows 11 laptop, which meant that I needed to install Firefox again. I did this and signed into to sync all my add-ons again. The add-ons i… (διαβάστε περισσότερα)

Hello,

Recently I rebuilt my Widows 11 laptop, which meant that I needed to install Firefox again. I did this and signed into to sync all my add-ons again. The add-ons installed without issue, however the icons for them are not displayed on the tool bar. I can access them using the jigsaw icon, but this is is less inconvenient that accessing the add-on directly.

I then reset Firefox in case it was a glitch and signed in again to allow the sync to reinstall the add-ons. This time only the Privacy Badger icon made it onto the toolbar. Again I can access the add-ons using the jigsaw icon.

I have tried to add the add-ons to the Customise Toolbar setting, but they do not show up in the list of things that can be added.

Firefox version: 112.0.1 (64 bit)

I have attached images to show what is happening. Is there anyway I can force the add-on icons onto the toolbar to make them more accessible?

Thank you

Ερώτηση από russell.seymour 5 μήνες πριν

Απάντηση από TyDraniu 5 μήνες πριν

  • Επιλύθηκε

"NetworkError when attempting to fetch resource." on many websites

in the last day firefox has all but stopped working on most websites. i can go to them and they start to load, but then they eventually break halfway through and either e… (διαβάστε περισσότερα)

in the last day firefox has all but stopped working on most websites. i can go to them and they start to load, but then they eventually break halfway through and either end up loading forever or produce an error. if i look at the console i see "Source map error: Error: NetworkError when attempting to fetch resource." this happens on twitter.com and raidbots.com to name two off the top of my head.

i did a complete refresh and even completely uninstalled and reinstalled the browser - it started working for a bit and then broke again. i have no plugins or extensions enabled currently (i have dashlane but this happens with it enabled or disabled). it's making the browser unusable. ive scanned my computer for malware and cant find anything either. i don't have this problem in any other browsers so not sure what else to try.

Ερώτηση από fnnmyr 5 μήνες πριν

Απάντηση από cor-el 4 μήνες πριν

  • Επιλύθηκε

Cannot see Pin to Toolbar option to add extension shortcut icon to toolbar

I have bought a new pc with Windows 11 home pre-installed and set Mozilla Firefox latest version as default browser ...the issue i am having is placing add-on extension s… (διαβάστε περισσότερα)

I have bought a new pc with Windows 11 home pre-installed and set Mozilla Firefox latest version as default browser ...the issue i am having is placing add-on extension shortcut icons on toolbar. I installed Norton Safe Web and this installed ok and is listed in extension control panel and when i click puzzle icon Norton Safe Web is not shown under manage shortcuts nor can i see option to Pin to Toolbar. Have tried several attempts but still get nowhere.I uninstalled Mozilla Firefox...restarted pc ... did a fresh install of Mozilla Firefox without altering any settings..re-installed Norton Safe Web and still cannot see option to Pin to Toolbar.Clicking the gear icon does not help Have i missed a step somewhere ?

Ερώτηση από starbuck.jones 3 μήνες πριν

Απάντηση από starbuck.jones 3 μήνες πριν

  • Επιλύθηκε

White screen while using the browser

A white screen occurs when browsing the web. If you turn off "Use recommended performance settings" and "Use hardware acceleration when available" the problem is fixed, b… (διαβάστε περισσότερα)

A white screen occurs when browsing the web. If you turn off "Use recommended performance settings" and "Use hardware acceleration when available" the problem is fixed, but then the browser slows down. Can this be fixed in another way?

Firefox 114.0 (64-bit) / Windows 11 Home 21H2

Ερώτηση από Oleh 3 μήνες πριν

Απάντηση από Oleh 3 μήνες πριν

  • Επιλύθηκε

Firefox 115.0 crashes when trying to browse computer to post documents, photos, etc.

When writing reviews in Google Maps when you click post pictures from your computer (allowing one to browse your computer to find pictures to post) the tab crashes. This… (διαβάστε περισσότερα)

When writing reviews in Google Maps when you click post pictures from your computer (allowing one to browse your computer to find pictures to post) the tab crashes.

This occurs on other websites as well where one would browse the computer to attach documents, photos or videos. Heck, it even happens with this site (selecting browse to post picture causes firefox to crash).

This did not occur prior to updating to 115.0

Windows 11 operating system

Ερώτηση από aztx_purchases 2 μήνες πριν

Απάντηση από aztx_purchases 2 μήνες πριν

  • Επιλύθηκε

Tab freezes for about 10 seconds when using google search

When i go to google.com and enter search query the tab "hangs" for about 10 seconds before the next page starts to load Same issue on 2 separate machines (1 intel laptop,… (διαβάστε περισσότερα)

When i go to google.com and enter search query the tab "hangs" for about 10 seconds before the next page starts to load Same issue on 2 separate machines (1 intel laptop, 1 amd pc) both on newly installed windows 11 pro

what i've tried: safe mode, disabling hardware acceleration, disabling antivirus (kaspersky, without any browser plugins or safe browsing) , but the issue persists

here's the video: https://youtu.be/qMY-38z_TC0

Ερώτηση από Kairali 1 εβδομάδα πριν

Απάντηση από zeroknight 1 εβδομάδα πριν

  • Επιλύθηκε

Is there a way to change only the background image for new tabs in Firefox 117+?

Hi, I have been searching a way to change the Firefox new tab background image keeping its vanilla design. I found I could use a userContent.css file in this post from a … (διαβάστε περισσότερα)

Hi, I have been searching a way to change the Firefox new tab background image keeping its vanilla design. I found I could use a userContent.css file in this post from a few years ago: [https://support.mozilla.org/en-US/que.../1271362] I have followed the instructions step by step but it doesn't currently work.

Ερώτηση από Tifile 1 εβδομάδα πριν

Απάντηση από zeroknight 1 εβδομάδα πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Consistent "Trouble find that site" Errors on Windows 11

Recently I upgraded my Windows 10 to Windows 11 and since doing so, I've had consistent errors while browsing the web on Firefox. Most notably the "Humm. We're having tro… (διαβάστε περισσότερα)

Recently I upgraded my Windows 10 to Windows 11 and since doing so, I've had consistent errors while browsing the web on Firefox. Most notably the "Humm. We're having trouble finding that site." error message.

For example, when visiting, say Verizon.com, the tab will display the aforementioned error to which I press Try Again and the website loads correctly every-time. No hiccups on the refresh.

I've tried the following:

  1. I've performed a completely clean uninstall of Firefox and then reinstall
  2. Cleared all browser history/cache
  3. Removed all extensions
  4. Disabled IPv6, HTTPS Over DNS, No Proxy
  5. Ran through Firefox's troubleshooting
  6. Used Firefox Troubleshooting Mode in the Browser
  7. Tested that the problem does not happen while using Edge

I've never had a single problem on Windows 10 with Firefox. Curious if others are experiencing the same issues and if there are any fixes. Nothing else on the PC has changed.

  • Windows 11 21H2 2200.348
  • Network driver is the latest Win11 edition
  • Firefox 95

Ερώτηση από Justin 1 έτος πριν

Απάντηση από Justin 1 έτος πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Windows 11 Minimize/Maximize Buttons Missing (Tablet Mode?)

My minimize/maximize buttons have suddenly gone missing. I found other answers on this site that say Tablet Mode is the culprit; indeed, the density settings within Firef… (διαβάστε περισσότερα)

My minimize/maximize buttons have suddenly gone missing. I found other answers on this site that say Tablet Mode is the culprit; indeed, the density settings within Firefox are telling me Tablet Mode on.

However, tablet mode was officially removed in Windows 11. It's not in the settings, it's not in the Control Panel, and registry edits don't seem to work either. So what's going on here? A regression? How do I get my minimize and maximize buttons back?

Ερώτηση από lunabunn 1 έτος πριν

Απάντηση από cor-el 1 έτος πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Nightly 95 on Windows 11 - Minimize & Maximize Buttons Are Missing

I have recently clean installed Windows 11 on my computer. I have noticed with the current Nightly 95 install that the minimize & maximize buttons are completely gone… (διαβάστε περισσότερα)

I have recently clean installed Windows 11 on my computer. I have noticed with the current Nightly 95 install that the minimize & maximize buttons are completely gone, only the close button is there. Even when I click on the area where the 2 missing buttons are nothing happens. When I double click the same area, the area behaves the same way as the rest of the top bar, it either makes the current window become a smaller window or a full window.

I have also installed Firefox 93 and 94 Beta 6, they both behave as normal with the minimize and maximize buttons visible and usable, just like any other program or Firefox version ever on Windows. Also, before I clean installed Windows 11, I used Nightly 95 on Windows 10 within the last day or so and I don't recall ever having this behavior happen there either.

Is this behavior on Nightly 95 on Windows 11 intentional or an error? I know Firefox has and is going through a massive GUI update and other user facing changes with Proton, but wasn't sure if this had anything to do with the trouble I am experiencing. I also understand that Nightly may have a lot of changes and features that are unique to it. I honestly just wasn't sure about this issue.

Thank you in advance for any and all help!

Ερώτηση από 7apple7 1 έτος πριν

Απάντηση από jscher2000 - Support Volunteer 1 έτος πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

Windows update to windows 11

Hi Everybody I upgraded to windows11 yesterday. Now I see that some websites like https://www.digitec.ch/ show correctly for approximatly 1 second, then they turn white. … (διαβάστε περισσότερα)

Hi Everybody I upgraded to windows11 yesterday. Now I see that some websites like https://www.digitec.ch/ show correctly for approximatly 1 second, then they turn white. Any idea what causes that? Thanks a lot for any help. Thomas

Ερώτηση από mathis.thomas 1 έτος πριν

Απάντηση από mathis.thomas 1 έτος πριν

  • Επιλύθηκε
  • Αρχειοθετήθηκε

"internet security warning" pop up.

Every time I open up outlook I get "internet security warning" pop up. i am using proton mail with proton bridge to get it on outlook and I use Proton VPN. Proton isn't… (διαβάστε περισσότερα)

Every time I open up outlook I get "internet security warning" pop up. i am using proton mail with proton bridge to get it on outlook and I use Proton VPN. Proton isn't secure?

Ερώτηση από rboelte 1 έτος πριν

Απάντηση από jscher2000 - Support Volunteer 1 έτος πριν