Showing questions tagged: Show all questions

What can i do to stop this horrible PIPicture on YTube on Linux now ?

i have Linux Cinnamon 22 and want to stop the PIP on YT. I disabled/unchecked box for PIP on FFox and PIP still happen on YT. What can i do to stop this horrible PIP now&… (read more)

i have Linux Cinnamon 22 and want to stop the PIP on YT. I disabled/unchecked box for PIP on FFox and PIP still happen on YT. What can i do to stop this horrible PIP now ? thank you.

Asked by lauraiancu 5 months ago

Last reply by cor-el 5 months ago

On top videos not working

Dear all, Since the last update the on top YouTube videos are not playing anymore. When open YouTube video full screen with browser, then clicking on home button. It ope… (read more)

Dear all,

Since the last update the on top YouTube videos are not playing anymore. When open YouTube video full screen with browser, then clicking on home button. It opens on top video. But this video is not playing. Could you please fix it? Regards

Asked by Constantin M 2 months ago

Last reply by TyDraniu 2 months ago

Picture-in-picture hotkey not working in Linux?

It says on https://support.mozilla.org/en-US/kb/about-picture-picture-firefox#w_keyboard-shortcuts that the hotkey to toggle `PiP is CTRL Shift ]`. When I play a video it… (read more)

It says on https://support.mozilla.org/en-US/kb/about-picture-picture-firefox#w_keyboard-shortcuts that the hotkey to toggle `PiP is CTRL Shift ]`. When I play a video it shows the PiP button, but the hotkey doesn't work. The other PiP keys like seeking and volume work. I'm on Fedora 41 with KDE 6.3.3 & Wayland.

Asked by TheWonderAlmighty 2 months ago

Last reply by jonzn4SUSE 2 months ago

New Password Requirement to open Firefox

With update 136.0, FF is requiring us to use a master password. I have one already set so my data is protected. I do not need a master password to open FF, but now I do. … (read more)

With update 136.0, FF is requiring us to use a master password. I have one already set so my data is protected. I do not need a master password to open FF, but now I do.

STOP THIS MADNESS

Asked by Brian Donaldson 3 months ago

Last reply by TyDraniu 3 months ago

pages not displaying any more

https://shop.sportsbasement.com displayed and work 3-4 days ago. Now blank. https://us.muc-off.com/ blank https://www.asp-usa.com/ blank https://byrna.com/ blank I … (read more)

https://shop.sportsbasement.com displayed and work 3-4 days ago. Now blank. https://us.muc-off.com/ blank https://www.asp-usa.com/ blank https://byrna.com/ blank

I have cleared cashe, history, Turn VPN off, Turn adblocker off, these were all on when it worked. Now nothing

Asked by k4ajaco 4 months ago

Last reply by tmcnamee 3 months ago

Wikipedia displays a strange mix of fonts when rendering Thai article.

Wikipedia render Thai fonts correctly. But it seems to render Latin texts and numbers in "TH Charm of AU" font for Thai articles, which I did not set anywhere in the brow… (read more)

Wikipedia render Thai fonts correctly. But it seems to render Latin texts and numbers in "TH Charm of AU" font for Thai articles, which I did not set anywhere in the browser (and my operating system). Ticking "Allow pages to choose their own fonts, instead of your selections above" does not fix it either. But it renders fonts correctly in English version of the same article. (See the attached images).

Any ways to fix this?

Thanks in advance.

Asked by jangsoodlor 5 months ago

Last reply by TyDraniu 5 months ago

Can't keep pinned tabs

Firefox will not longer close without also closing my pinned tabs which pretty much defeats the purpose of pinning tabs for later and makes it much harder to keep track o… (read more)

Firefox will not longer close without also closing my pinned tabs which pretty much defeats the purpose of pinning tabs for later and makes it much harder to keep track of things. I didn't notice the first time and lost my pinned tabs that had been there for months, I immediately put them back but now everytime I try exiting firefox it informs me i'm about to close however many tabs are open + the pinned tabs. Does anyone know how to solve the problem/what might be causing it.

Asked by Lucifer 3 months ago

Last reply by an.beu 3 months ago

Passwords are no longer syncing between devices in Mozilla sync account.

None of my saved passwords in my Mozilla account are showing up when I switch laptops and try to logon to various sites. Instead I have to manually enter the passwords fo… (read more)

None of my saved passwords in my Mozilla account are showing up when I switch laptops and try to logon to various sites. Instead I have to manually enter the passwords for the sites every time even though the sites show that I have saved passwords for that site in my Mozilla account. When I type the password in a old or new site, Mozilla doesn't even ask if I want to save the password anymore.

Asked by snowwcat 3 months ago

Last reply by jscher2000 - Support Volunteer 3 months ago

viewing pdf file

Every time I try to view a pdf file on Firefox I can view the file but in the lower right 1/4 of the screen I get a graphic of a page with shaded areas representing lines… (read more)

Every time I try to view a pdf file on Firefox I can view the file but in the lower right 1/4 of the screen I get a graphic of a page with shaded areas representing lines with writing on them. There is a type of pen cursor moving along the line.

This happens with different pdfs - from the internet and from my saved files. This doesn't happen on another computer with Firefox.

I've deleted and redownloaded Firefox an number of times, also tried troubleshoot mode - no improvement. Virus scanned, restarted a number of times.

Pdfs work on edge and chrome and reader with no problem.

I have a screenshot.

Any Ideas? Thanks

Asked by mary141 3 months ago

Last reply by cor-el 3 months ago

The stylesheet was not loaded because its MIME type, “text/html”, is not “text/css”.

I am sorry if this is not the place to ask this question. I am new to web development and have been trying to solve this issue for days. I have an ESP32 acting as an http… (read more)

I am sorry if this is not the place to ask this question. I am new to web development and have been trying to solve this issue for days. I have an ESP32 acting as an http server. I have developed web pages which have separate html, css, and javascript files. These work as expected when delivered locally (i.e. I double click on the the files), however, when they are served by the ESP the style sheet is ignored and I get the message

The stylesheet (url) was not loaded because its MIME type, “text/html”, is not “text/css”.

from Firefox debugger. The stylesheet is ignore across all browsers (Firefox, Chrome, Opera, Edge), however the error is only shown in Firefox. Normally, of course, I would expect an issue on the ESP32 side, however, the non-Firefox browsers do load the stylesheet (even tough they ignore it) and I am able to verify that the stylesheet is identical to the one served locally.

Oddly, if I open a Firefox tab and load the page, switching to developer mode causes several requests for the stylesheet and the styles are then applied. Subsequent refreshes of the page causes the style to be lost and closing/opening developer mode has no effect.

Although I have disabled javascript to try fix this problem, when javascript is loaded I get a similar message (except the javascript is loaded).

I believe I specified the MIME type because I exactly coped several examples

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8"/> 
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <link rel="stylesheet" type="text/css" href="styles.css" />
<!--<link rel="stylesheet" type="text/css" href="name-of-stylesheet.css" />    -->
<!--    <script type="text/javascript" src="ESP-UI.js"></script> -->
    <title>My ESP32</title>
</head>


Thanks for the help!

Asked by nairb1958 4 months ago

Last reply by cor-el 4 months ago

Websites will not load

Over the last 6 months, and increasing number of websites don't open on Firefox. I've noticed it most consistently on any of the wikipedia/wikimedia pages, but it's not … (read more)

Over the last 6 months, and increasing number of websites don't open on Firefox. I've noticed it most consistently on any of the wikipedia/wikimedia pages, but it's not just those. When I type in an address and press return, or click on a link, the browser just acts as if nothing has happened. There does not show me the loading symbole. If I ask it to open a new tab with the site, the address appears on the tab, but the page itself is just black. Other browsers have no problem loading the same sites. I am on a mac, and using a VPN. Restarting the browser doesn't help, though restarting the computer sometimes does.

Thank you,

Asked by daniel.einstein 4 months ago

Last reply by nick+mozilla 1 month ago

Unable to use or watch Prime and netflix in this browser

Can you guys check why your netflix account is getting logged out every time regardless of how many times you logged in and for prime video if you play any video i'm gett… (read more)

Can you guys check why your netflix account is getting logged out every time regardless of how many times you logged in and for prime video if you play any video i'm getting video player error, can you please check

Asked by Sankaramoorthy V 3 months ago

Last reply by cor-el 3 months ago

Pic in Pic not working

the pic in pic feature doesn't work. When I click the icon to go pic in pic Firefox opens a new full screen window with the video. I can't see any way to toggle it to be … (read more)

the pic in pic feature doesn't work. When I click the icon to go pic in pic Firefox opens a new full screen window with the video. I can't see any way to toggle it to be a small screen at the edge of the screen I'm working in.

Please advise.

Asked by wmeades 2 months ago

Last reply by Logosor 2 months ago

Picture in Picture for app suddenly stopped working

Only hours after my previous use of the picture in picture function to watch YouTube via the mobile site on the app browser, the function suddenly stopped working. It w… (read more)

Only hours after my previous use of the picture in picture function to watch YouTube via the mobile site on the app browser, the function suddenly stopped working.

It would play the videos when I was in other tabs, and with the app itself closed. However, as soon as I opened it as a picture in picture window, the video paused and refused to restart playing.

This far, I have:

  • cleared the cache
  • force quit the app and restarted
  • double checked that picture in picture was enabled (it was)
  • made sure the app is up to date (it is) and compatible with my phone (it is)
  • made sure the Video Background Play Fit was still enabled and up to date (it is)

None of these issues has resolved the issue. As the issue is specific to the play to play function, and is not effected by closing the browser or switching tabs, I believe it is an issue with the function, not the site.

Asked by Sabra Schirm 2 months ago

Last reply by Samara Nix 42 2 months ago

Firefox for Android picture in picture

I have an issue with picture in picture. Every time I'm watching a video in full screen on m.youtube.com and I want it in picture in picture mode, I press the home button… (read more)

I have an issue with picture in picture. Every time I'm watching a video in full screen on m.youtube.com and I want it in picture in picture mode, I press the home button, and it pauses the video whilst also going out of Fullscreen mode. This happens on a Google pixel 9 running android 15 with Firefox version 136.0.2 and on a Google pixel 3xl running android 12 with Firefox version 136.0.2. And on a Samsung s21 running android 14 with Firefox version 134.0.2 (I down graded to fix an audio issue) all of these have the same picture in picture problem How do I fix this?

Asked by placeHolderName123 2 months ago

Last reply by TyDraniu 2 months ago

Picture in picture issues

I've been using firefox for a few months now to use ublock origin when watching YouTube. Yesterday I was watching a video and went to open another app on my phone when th… (read more)

I've been using firefox for a few months now to use ublock origin when watching YouTube. Yesterday I was watching a video and went to open another app on my phone when the PIP stopped playing the video. It appears that the PIP tries to open in full screen (it has the popup stating to drag from top or press back to exit when picture in picture starts) and stops playing. If I go back to the video I can play it normally but essentially picture in picture is not working. I've tried uninstalling and reinstalling, I tried disabling all extensions, I cleared my browsing history, and I searched to see if anyone had a similar issue. Any tips would be appreciated. I've attached a picture of what the picture in picture looks like in case that helps.

Asked by Kenneth Fonteyne 2 months ago

Last reply by TyDraniu 2 months ago

Picture in picture

I have a continuous problem when using the Picture in picture mode on an android phone. When enabling Picture in picture the video turns to this (see picture) and won't p… (read more)

I have a continuous problem when using the Picture in picture mode on an android phone. When enabling Picture in picture the video turns to this (see picture) and won't play it anymore. For the last 2-3 days I haven't been able to use the mode, please help.

Asked by Hubert 2 months ago

Last reply by TyDraniu 2 months ago

picture in picture broken

Along with comments no longer loading when using youtube, picture in picture no longer works. Ive already informed you of the comment section and still not fixed. Is ther… (read more)

Along with comments no longer loading when using youtube, picture in picture no longer works. Ive already informed you of the comment section and still not fixed. Is there a way to roll back versions of Firefox to a version that isn't broken?

Asked by Theoden “Knife Wielder” Peregrine 2 months ago

Last reply by Paul 2 months ago

Youtube pauses on android split screen

This is a recent problem. I normally watch YouTube while I play games on my phone by splitting the screen. Recently YouTube has been unable to play videos on the smallest… (read more)

This is a recent problem. I normally watch YouTube while I play games on my phone by splitting the screen. Recently YouTube has been unable to play videos on the smallest window size. This was possible a week ago. I have attached an image of the size at which this occurs. This is a problem large enough that I will no longer be using the browser if it continues. Half and half screen size still works, however it doesn't work for my purpose.

Regards Benjamin

Asked by Benjamin Madsen 2 months ago

Last reply by Paul 2 months ago