Desktop icons
All the firefox shortcut icons on my desktop have lost their images. Acess to relavent pages still works but no 'pictures'
All the firefox shortcut icons on my desktop have lost their images. Acess to relavent pages still works but no 'pictures'
Every time I access the web I get a report from Norton saying "Threat secured". It attaches every single website that I open. See attachment for some exmaples (only vari… (read more)
Every time I access the web I get a report from Norton saying "Threat secured". It attaches every single website that I open. See attachment for some exmaples (only variabole part of message shown apart from first one).This is occuring 50+ times a day but does not occur using Edge, so it appears to be related to Firefox. PLEASE help. Norton have not helped with this. Thank you- Colin O'Brien
I am using the latest Fiefox and i have disabled all adons i have tried everything I have changed my Facebook password every time i g try to share something on Fire… (read more)
I am using the latest Fiefox and i have disabled all adons i have tried everything I have changed my Facebook password every time i g try to share something on Firefox get a black box on the bottom right that says something wrong . I have tried to copy the entire hing but can not i got some of it I have even reinstalled firebox ans still can not share anything I have tried contacting Facebook but that does not happen no response i appears to work in Chrome on a noter Facebook account so it is Firefox. i will send you what i could get on the screen shot the part that is missing s the part that says something s wrong
I can't print from Firefox since getting new laptop. I can print from Chrome and Edge.
For the past 2 months I've found it very difficult to sign into my Hotmail account using Firefox. Microsoft keep telling me to use a VPN or another device. I like answer… (read more)
For the past 2 months I've found it very difficult to sign into my Hotmail account using Firefox. Microsoft keep telling me to use a VPN or another device. I like answering emails on my computer because of its large screen. I've tried signing in about 2000 times now. Firefox told me they can't help me because I'm not a Mozilla subscriber even though they own Firefox. Microsoft told me it's Mozilla's problem. Can anyone help me please. John in the Philippines.
Is there a way to copy the History data (for pasting into Word, Excel or a text-editor)?
I have a desktop PC
Firefox 140.0.4 (64-bit)
Windows 11
Hello, I'm writing because I’ve encountered an issue with the tab groups feature in Firefox. Some time ago, after a browser update, I noticed a new feature that allowed… (read more)
Hello,
I'm writing because I’ve encountered an issue with the tab groups feature in Firefox.
Some time ago, after a browser update, I noticed a new feature that allowed me to group tabs thematically — I could name each group (e.g., "Study", "Work"), choose a color for it, and save and close groups to reopen them later. I found it very useful and used it a lot.
Last night, I decided to declutter my browser and closed several tab groups using the built-in menu. A bit later, I shut down my computer, but perhaps too quickly. This morning, when I turned my computer back on, Firefox was very slow to start. After a restart, everything seemed to work fine again, and the open tabs were restored.
However, all my previously saved (but temporarily closed) tab groups disappeared. In the tab group menu, I can now only see the ones currently open. I’ve searched through all the settings and history but cannot find any way to restore the missing groups.
Is there any way to recover the tab groups that I had previously saved and closed?
Thank you very much in advance!
I am trying to connect with my utility provider online. When I try to log in, I give my name and password. It comes up with a CAPTCHA screen. I click on the items but … (read more)
I am trying to connect with my utility provider online. When I try to log in, I give my name and password. It comes up with a CAPTCHA screen. I click on the items but I just keep getting another screen. After a dozen screens it says CAPTCHA will time out in 2 minutes.
Does anyone have any ideas what could be blocking it?
I have read all your tutorials. I was unable to have an important televisit with my doctor yesterday because nothing I tried worked. I am unable to use webcam for other… (read more)
I have read all your tutorials. I was unable to have an important televisit with my doctor yesterday because nothing I tried worked. I am unable to use webcam for other sites until I resolve this problem. Previously I had no problem with my webcam but recently had to get new pc with windows 11 & needs to configure my pc to address this issue. I have another appt scheduled with another doctor & need to fix this problem asap Thanks
After Windows crashed, I installed a new system and logged into Firefox using my account. But all my history, passwords, bookmarks were erased. I also went to my phone an… (read more)
After Windows crashed, I installed a new system and logged into Firefox using my account. But all my history, passwords, bookmarks were erased. I also went to my phone and everything was gone. I didn't erase anything myself. Is there any way to restore the previous state of the account? Are there any backups on the Firefox Sync server?
xfinity.com fails to load streaming options screen
The app sizes two adjacent images to the same height. Maybe there's a better approach? This works, in that I see the original image displayed at the wrong size: //im… (read more)
The app sizes two adjacent images to the same height. Maybe there's a better approach?
This works, in that I see the original image displayed at the wrong size:
//img.src = imgsrc.src;
This sizes the image but without the data (black square for toDataURL w/ image/jpeg) in FF, but not Chrome and Safari:
var canvas = document.createElement( 'canvas' ); canvas.width = width; canvas.height = avail_height; var context = canvas.getContext( '2d' );
// Tried/failed: Fill white background for JPEG export //context.fillStyle = '#fff'; //context.fillRect(0, 0, canvas.width, canvas.height);
context.drawImage( imgsrc, 0, 0, canvas.width, canvas.height); context.lineWidth = 150; // ??
img.src = canvas.toDataURL('image/jpeg', 0.92);
img.onmousedown = disableDragging; // for FF
img.style.opacity = "1.0"
The page is the view.html one gets to via Enter on phobrain.com.
What the title says. Firefox just isn't playing any sound whatsoever. Troubleshooting: Volume mixer indicates that Firefox is using my speakers, along with all other… (read more)
What the title says. Firefox just isn't playing any sound whatsoever.
Troubleshooting:
I have Apollo installed on my computer and I've reached out to them before for similar issues, but the dev was insistent that Apollo does not cause sound issues. I'm somewhat sceptical, but they're not being helpful at all so I thought I'd ask here, and disclose usage of Apollo so that all bases are covered.
Thank you for your time.
I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution. The behavior is the same whether the served … (read more)
I don't know if this ever worked in FF, since I've been on Chrome a while. I tried canvas.toBlob() in FF without a solution.
The behavior is the same whether the served image is jpg or webp. A Servlet delivers the image data, here in webp:
response.setHeader("Content-Type", "image/webp");
On page, I use a canvas thus => see '// FIREFOX'
var canvas = document.createElement( 'canvas' );
canvas.width = width;
canvas.height = avail_height;
var context = canvas.getContext( '2d' );
context.drawImage( imgsrc, 0, 0, width, avail_height);
context.lineWidth = 150;
// FIREFOX: canvas.toDataURL('image/jpeg')=black, png,webp,default=transparent
img.src = canvas.toDataURL('image/jpeg');
img.onmousedown = disableDragging; // for FF
img.style.opacity = "1.0";
console.log('setImg ok');
Inspecting a black jpeg:
data:image/jpeg;base64,...
Thanks!
When pasting an image from the clipboard in Outlook Web Access in Edge there's right mouse button option to "Paste as Image". This places the image inline. In Firefox t… (read more)
When pasting an image from the clipboard in Outlook Web Access in Edge there's right mouse button option to "Paste as Image". This places the image inline. In Firefox there's no option like this.
Safe mode (troubleshooting mode) doesn't fix this. Ctrl + V or Shift + Ctrl + V doesn't fix it. Shift RMB to get Firefox menu does show Paste and Paste without formatting but it doesn't paste any inline image.
I've attached a screenshot of Edge and Firefox with the Outlook context menu and Firefox context menu.
Firefox version: 140.0.4 (64-bit) Edge version: 138.0.3351.83 (Official build) (64-bit)
I have HDR working in Proton games and mpv fine (using Plasma 6.4 / Wayland) I enabled HDR in Firefox (gfx.wayland.hdr), and HDR content works in YouTube fine ( looks am… (read more)
I have HDR working in Proton games and mpv fine (using Plasma 6.4 / Wayland)
I enabled HDR in Firefox (gfx.wayland.hdr), and HDR content works in YouTube fine ( looks amazing!) however.. I have an issue in that all non HDR content doesn’t show any video (I have sound) just a green sceen (see screen shot) including all ads.
Any idea how to work round this ?
I have AMD 7800 GPU .
Cheers
I regularly use a website which intercepts command-option-up and command-option-down for its own navigation. This is a central part of my workflow with this website, and … (read more)
I regularly use a website which intercepts command-option-up and command-option-down for its own navigation. This is a central part of my workflow with this website, and without it it becomes completely unusable.
After updating to Firefox 140.0.4, these shortcuts are now used by the browser to switch tabs. I have not found any way to configure this. Am I missing some obscure way to do this or is this just impossible?
I imagine this change was made to support vertical tabs, but I'm not using those, so the command-option-left and command-option-right shortcuts make more sense for my horizontal setup. (I don't use those shortcuts either, though- I use ctrl-tab and ctrl-shift-tab!)
I keep a lot of tabs open (~60) in any particular session - I find it's faster in this way to get back to a site. About every six months or so, I lose *all* these tabs b… (read more)
I keep a lot of tabs open (~60) in any particular session - I find it's faster in this way to get back to a site.
About every six months or so, I lose *all* these tabs because of Firefox's inadequate session backup system. It only saves two or three total backups, some of which are completely out of date. But the worst scenario is when (1) some site pops up a new window; (2) I mistakenly close my main window before the new window; (3) I open this new saved window once or twice by accident, causing my 60-tab session backup to be overwritten.
Using a third-party session manager (I have tried all the well-known ones) can mitigate this problem, but doesn't really solve it because the re-opened sessions aren't quite in the same format as Firefox sessions and so lose information. In particular, I often lose each tab's icon as well as metadata for Tree Style Tab.
Could Mozilla please consider a more robust session backup system for Firefox? All it would take (I think) is to allow the user to choose the total number of backup sessions and the frequency at which a new session is added. Thank you!
Is anyone else having problems with the latest version of Firefox not rendering Google Calender, Amazon.com and other websites? … (read more)
Is anyone else having problems with the latest version of Firefox not rendering Google Calender, Amazon.com and other websites?
About two weeks ago, Firefox started randomly hanging and would stop responding. It wouldn't let me close the program and I always have to restart my system to resolve th… (read more)
About two weeks ago, Firefox started randomly hanging and would stop responding. It wouldn't let me close the program and I always have to restart my system to resolve the problem. Sometimes it only takes a few minutes after restart before it hangs, other times it will be fine for hours.
I've tried multiple solutions I've found online, carefully following instructions: clearing cookies and cache, disabling all extensions, refreshing firefox, creating a new profile, deleting specific files within the Profiles folder, etc.
I've yet to make it more than four hours without the program hanging.
Any assistance or suggestions are greatly appreciated.