Showing questions tagged: Show all questions
  • Solved

imported bookmarks toolbar doesn't display as toolbar

After exporting bookmarks.html from Ffox on old computer, importing it to Ffox on the new one, all good, except that bookmarks toolbar shows on the imported list but does… (read more)

After exporting bookmarks.html from Ffox on old computer, importing it to Ffox on the new one, all good, except that bookmarks toolbar shows on the imported list but doesn't display as toolbar.

Asked by fostertom 5 months ago

Answered by fostertom 4 months ago

Automatic translation pop up window

Every time I open a new site or webpage, the automatic translation window pops up. I don't need translations and I have to choose "don't translate this page" again and ag… (read more)

Every time I open a new site or webpage, the automatic translation window pops up. I don't need translations and I have to choose "don't translate this page" again and again. I've searched everywhere on Firefox and I can't find a way to stop this. It is extremely intrusive and annoying. I don't understand why Firefox should decide for me what I want and what I don't want. Has anybody solved this problem.

Asked by ninadaon3 4 months ago

Last reply by TyDraniu 4 months ago

Drop down menus. Black background. White text and white selection box.

Hi. I'm still new to Firefox and don't really know the settings very well. I recently switched over to using it and realized that when I use most drop down boxes the back… (read more)

Hi. I'm still new to Firefox and don't really know the settings very well. I recently switched over to using it and realized that when I use most drop down boxes the background of the drop down menu is black, but the text is white and the selection box (when you hover over the item) is also white. Making whatever I'm hovering over very hard to see. I'm wondering if I have a strange setting turned on or not?

Settings wise I have Firefox set to dark mode, not the auto. But when I use the auto it still happens. Trying it in safe mode it still happens. Iv tried to research this a little myself. And read something about the proton setting and turning that from true to false. But this also did not work.

Is there any way to fix this? I just need the text to be a different color or the selection box (when you hover over it) to be a different color.

Attached are two screenshots of what I'm seeing

Asked by wintair 4 months ago

Last reply by wintair 4 months ago

cannot share anthn on Facebook

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

Asked by Mary 4 months ago

Last reply by Paul 3 months ago

Can't remove Old Firefox Data Folder from my desktop

I made the mistake to following Mozilla's advice on why my tabs stopped coming back after I closed out, despite the fact that I had that selected in my settings. Now I'm… (read more)

I made the mistake to following Mozilla's advice on why my tabs stopped coming back after I closed out, despite the fact that I had that selected in my settings. Now I'm stuck with an "Old Firefox Data" folder on my desktop and I can't remove it because I need administrator privileges -- but it's my personal PC. WTF

Asked by tom.hudak 4 months ago

Last reply by tom.hudak 4 months ago

I can't connect two-factor authentication

Hello! I contacted you with a problem with the impossibility of installing two-factor authentication on my account. Despite successfully entering the code and saving back… (read more)

Hello! I contacted you with a problem with the impossibility of installing two-factor authentication on my account. Despite successfully entering the code and saving backups, two-factor authentication disappears immediately after refreshing the page. Mozilla stores all my passwords and data - therefore, two-factor authentication is very important for my account.

Asked by olegnikiforov0 4 months ago

Last reply by Kiki 4 months ago

  • Solved

Drop Down Menu On Certain Websites Won't Work

I recently ported from chrome to firefox about 3 days ago and was tryin to access the dropdown menus on this website https://www2.gov.bc.ca/gov/content/governments/govern… (read more)

I recently ported from chrome to firefox about 3 days ago and was tryin to access the dropdown menus on this website https://www2.gov.bc.ca/gov/content/governments/government-id/bc-services-card/your-card/get-a-card

I realized it wasn't working so I turned off my adblocker (ublock origin), refreshed the site and still not working.

Also attempted to use troubleshoot mode and still does not work.

Cleared cache + cookies and used troubleshoot mode and nothing working still.

I lastly checked the website was working by opening the same link on chrome after all that and it works perfectly fine over there. Any ideas what could possibly be the issue?? I basically have a fresh install of firefox with no changed settings besides anything that might of been copied over from Chrome when firefox automatically asks you to migrate your stuff over, and used the troubleshoot mode + clearing cookies and cache

Asked by KoiYouu 4 months ago

Answered by KoiYouu 4 months ago

Firefox Issues After Update

I don't know what you're doing but EVERYTIME I do an update lately, something goes wrong. Today after update, my STGs are affected and ALL ARE GONE. I do NOT believe th… (read more)

I don't know what you're doing but EVERYTIME I do an update lately, something goes wrong. Today after update, my STGs are affected and ALL ARE GONE. I do NOT believe this is their fault. And you put this dang auto Startpage when launching window, I did NOT ask for that. I am so pissed, how do I get them all back? I had things I was working on that were very important. What else did you add to FF that I don't know about? I don't want your updates anymore. You screwed me big time. And I don't want the extensions YOU think I should have: Google, eBay, Bing, etc. wasting my space. I'm not the only one either, seen lots of complaints.

HOW DO I GET THOSE TABS BACK??????

Asked by jj 4 months ago

Last reply by jscher2000 - Support Volunteer 2 months ago

  • Solved

Using canvas/context to scale an image that displays ok before removes the image data, ok in Chome/Safari.

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.

Asked by phobrain 3 months ago

Answered by Paul 3 months ago

  • Solved

How to set the browser's tab bar to lock and stay permanently

I want the browser's tab bar to display like the homepage, instead of disappearing after opening a webpage tab bar. I don't know if I can accurately express my meaning, b… (read more)

I want the browser's tab bar to display like the homepage, instead of disappearing after opening a webpage tab bar. I don't know if I can accurately express my meaning, but I will attach two pictures

Asked by 1647063045 4 months ago

Answered by Paul 4 months ago

  • Solved

Keep Bookmark Folders Open

I have a folder with many bookmarks in it, and when I want to open multiple links in the folder but not ALL of them, I have to keep opening the bookmarks folder after mid… (read more)

I have a folder with many bookmarks in it, and when I want to open multiple links in the folder but not ALL of them, I have to keep opening the bookmarks folder after middle clicking each link 1 at a time. I can't open the entire folder - there are 100+ and say I want to open 10.

Is there a way to keep the bookmark folder open while I open each link in new tabs?

Thanks!

Asked by Thomas DiPasquale 4 months ago

Answered by TechHorse 4 months ago

Deletion bookmarks and passwords

I was asked to create a new profile in order to keep using Firefox, despite never having an account. After I clicked okay, it opened the new version of Firefox, but witho… (read more)

I was asked to create a new profile in order to keep using Firefox, despite never having an account. After I clicked okay, it opened the new version of Firefox, but without all the passwords, bookmarks and history of the past few years. This is really inconvenient. I have since then made an account, but the fact that I can't find any of this data anywhere has me worried that every time I update Firefox it will wipe my account.

Asked by m.groot 4 months ago

Last reply by jscher2000 - Support Volunteer 3 months ago

  • Solved

New Tab page text color

Hi there! The New Tab page looks great with white text, but Firefox 140.0.4 thinks my wallpaper is white, so text should be dark. I can change the body class to "activity… (read more)

Hi there! The New Tab page looks great with white text, but Firefox 140.0.4 thinks my wallpaper is white, so text should be dark. I can change the body class to "activity-stream darkWallpaper" using the inspector and it works fine, but how make this change permanently?

Asked by yakov.mirenkov 4 months ago

Answered by yakov.mirenkov 4 months ago

  • Solved

webcam, microphone not accessible

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

Asked by mxereas 4 months ago

Answered by jonzn4SUSE 4 months ago