Showing questions tagged: Show all questions
  • Archived

Lost recently closed windows, history missing completely

Hello, Usually both of my previously closed windows reopen without issue, but the data for both of them disappeared this time when I clicked on a zoom link after closin… (read more)

Hello,

Usually both of my previously closed windows reopen without issue, but the data for both of them disappeared this time when I clicked on a zoom link after closing them. The link opened, but they didn't. I did the basic troubleshooting like checking my entire history (under "managed history") and looking in settings as well as following the instructions I found here at https://support.mozilla.org/en-US/questions/1407584, but everything's gone. It's like they never existed in the first place. Has anyone else had this issue?

Also, about a couple of months ago, Firefox started forgetting my accounts and logging me out of them once I closed the window/the tabs reloaded. Not sure if this is due to my computer's own storage (RAM) or an update-related issue - I haven't been able to figure it out yet.

Any insight on either or both of these is greatly appreciated!

Asked by TiffanyK127 1 year ago

Last reply by TiffanyK127 11 months ago

  • Archived

Audio on Videos in browser Not working.

Youtube brought up in the broswer works fine with audio/video but on other websites I can view the video and can't hear the audio. https://www.cnn.com/2024/12/15/us/dron… (read more)

Youtube brought up in the broswer works fine with audio/video but on other websites I can view the video and can't hear the audio.

https://www.cnn.com/2024/12/15/us/drone-sightings-east-coast/index.html?iid=cnn_buildContentRecirc_end_recirc

Asked by MrAdams 12 months ago

Last reply by MrAdams 11 months ago

  • Archived

weird control on my account

Hi, my account seems to have some kind of admin or enterprise control on it, but I'm not part of an organization. It says: Information Your browser is being managed by y… (read more)

Hi, my account seems to have some kind of admin or enterprise control on it, but I'm not part of an organization. It says:

Information Your browser is being managed by your organization.

I don't know how to fix this, but it is keeping me from updating and doing other things like clearing cache and adjusting my settings.

How can I fix this?

I don't know how it happened.

Thank you

Asked by bob.herkes 11 months ago

Last reply by cor-el 11 months ago

  • Archived

Search box shows up in Chrome but not in Firefox

When using website at https://tools.myfooddata.com/nutrition-facts/170112/100g/1 , the search box titled "Search for A Food" shows up in Google Chrome, but not in Firef… (read more)

When using website at https://tools.myfooddata.com/nutrition-facts/170112/100g/1 , the search box titled "Search for A Food" shows up in Google Chrome, but not in Firefox. In Google Chrome, it can be seen in the upper left part of the web page, but I can't find it in Firefox. Also, when I click on the button called "Instructions" on the web page, nothing happens in Firefox, but when I click on that button in Chrome, it opens up an instructions menu. What can I do about these things?

Asked by Larry951 11 months ago

Last reply by Larry951 11 months ago

  • Archived

Firefox freezing up when trying to save images using save image as feature

When saving images from websites using the save image as feature, Firefox will freeze up and not register any mouse click or anything instead making a ding noise every ti… (read more)

When saving images from websites using the save image as feature, Firefox will freeze up and not register any mouse click or anything instead making a ding noise every time is register a mouse click. This will continue for like 30 seconds before it becomes normal then it will repeat this for every image. How can I solve this?

Asked by Burak 11 months ago

Last reply by aodgizmo 10 months ago

  • Archived

How to use Firefox address bar to search when using Startpage as the search engine

I prefer to use Startpage as my search engine with Firefox on my Mac. I have that set up, but it's so annoying that when I put something in the address or search bar, no… (read more)

I prefer to use Startpage as my search engine with Firefox on my Mac. I have that set up, but it's so annoying that when I put something in the address or search bar, no search happens. Instead, I just get the Startpage home page and then have to retype the same thing in there! How do I solve this?

Asked by Carole Eddington 11 months ago

Last reply by Standard8 11 months ago

  • Archived

Inline JavaScript to hide bookmarks sidebar upon opening new browser instance

Does anybody know which options to use on the command-line start of Firefox such that the only thing displayed is the area within which an HTML page would be presented? … (read more)

Does anybody know which options to use on the command-line start of Firefox such that the only thing displayed is the area within which an HTML page would be presented?

I want to have it start with everything else turned off or hidden, namely

   memu bar
   page tabs bar
   address bar along all add-on buttons
   bookmarks sidebar

The "-kiosk" option is not appropriate for my needs.

-kiosk doesn't hide the sidebar (Bookmarks or not) if that sidebar was visible during last session before exit ... so ... no, "-kiosk" is not a proper implementation of a "page-only" display mode.

"-private-window" gives no benefit, display-wise, over and above what the "-new-window" option provides.

Everything I've read (even on the Mozilla support site) seems to point to creating a special profile for just that mode, and then to modify the "userChrome.css" file with custom properties to ensure the desired "off" setting for the GUI elements. That seems a rather "small-minded" view, ignoring the potential for huge market of self-contained hard-coded applications that would need only use the Firefox rendering engine, and nothing else!

One comment on Reddit indicated that the functionality was there ("-app" option working with XULrunner), but discontinued!


As a test, I did close all my browsers, leaving the bookmark sidebar visible before closing. I then entered:

firefox -kiosk -safe-mode -private-window ${URL}

I still get the bookmark-sidebar visible, with everything else "hidden" or "disabled", because visible sidebar is my default mode for normal browsing.

Is there no command-line startup switch to force that sidebar to "hide", equivalent to clicking on the "X" on the top-right corner?

OR ...

Is there any programmatic way to tell that to hide using JavaScript in the HTML page that is loaded? Everything I seem to locate refer to in-page Elements only, not Browser Elements. :frowning:

But "kiosk"(fullscreen-mode) is not the mode I want, because I want users to be able to have the simplified browser-based HTML App co-exist on the desktop with other windows, like a normal App.



    • Basic HTML test page** *(myHtmlGame.html)* **:**

``` <meta charset="UTF-8"> <title>myHtmlGame.html</title> <link href="myHtmlGame_bookmarks.css" rel="stylesheet" type="text/css"> <script src="myHtmlGame_bookmarks.js" type="text/javascript"> </script>

Box A
Box B
Box C
Box D
Box E
<script> {what to I place here } </script> ```



    • Basic Javascript file** (*myHtmlGame_bookmarks.js*) **:**

```

// REF: https://stackoverflow.com/questions/1690002/how-can-i-prevent-firefox-showing-my-extensions-sidebar-on-startup var current = this;

var quitObserver = {

  QueryInterface: function(aIID) {
     if (aIID.equals(Components.interfaces.nsIObserver) || aIID.equals(Components.interfaces.nsISupports)) {
        return this;
     }
     throw Components.results.NS_NOINTERFACE;
  },
  observe: function(aSubject,aTopic,aData ) {
     var mainWindow = current._windowMediator.getMostRecentWindow("navigator:browser");
     var sidebar  = mainWindow.document.getElementById("sidebar");
     if (sidebar.contentWindow.location.href == "chrome://daisy/content/sidebar.xul") {
        mainWindow.toggleSidebar('openDaisySidebar', false);
     }
  }

};

setTimeout(function() {

  var mainWindow = current._windowMediator.getMostRecentWindow("navigator:browser");
  var observerService = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
  observerService.addObserver(quitObserver,"quit-application-granted",false);

},2000); ```


I've tried using this alternative content for the JavaScript file, but that also failed (using '*hideSidebarBookmarks()*' call in the in-line script segment):

``` function hideSidebarBookmarks() { const sidebar = document.getElementById("CustomizableUI.AREA_BOOKMARKS") ; sidebar.hide() ; } ```

I even tried replacing the word "document" with "browser" in the above, still with no success. :-(



    • Startup command :**

``` firefox -new-window ./myHtmlGame.html & ```



    • Basic CSS file** *(myHtmlGame_bookmarks.css)* **:**

``` html { font-size: 14px ; font-family: "Liberation Sans", "Aileron", "Archivo", FreeSerif, serif ; line-height: 1.2em ; }

body { display: block ; background-color: #1F1F1F ; color: #FF0000 ;

margin-top: 0 ; margin-right: 0 ; margin-bottom: 0 ; margin-left: 0 ; }

/*

************************************************************************
*/

.game-grid { display: grid ; grid-template-columns: 300px 300px 60px ; grid-template-rows: 40px 300px 150px ; }

.game-item-1 { grid-column: 1 / span 3 ; grid-row: 1 / span 1 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

.game-item-2 { grid-column: 3 / span 1 ; grid-row: 2 / span 2 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

.game-item-3 { grid-column: 1 / span 2 ; grid-row: 2 / span 1 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

.game-item-4 { grid-column: 1 / span 1 ; grid-row: 3 / span 1 ; /* box-sizing: border-box ; */ border: 1px solid #8FCF8F ; background-color: #1F1F1F ;

padding-left: 3 em ;

display: block ; color: #FFCF4F ;

word-wrap: break-word ; /* overflow-y: scroll ; overflow-y: auto ; */ overflow-anchor: none ; scrollbar-color: grey-black ; scrollbar-width: thin ; scroll-padding-bottom: 20px ;

/* In case you need to kick off effect immediately, this plus JS */ /* height: 100.001vh ; */ }


.game-item-5 { grid-column: 2 / span 1 ; grid-row: 3 / span 1 ; border: 1px solid #8FCF8F ; background-color: #1F1F1F ; }

div { padding-top: 1 em ; padding-right: 0 ; padding-bottom: 1 em ; padding-left: 0 ; }

```

The above will display per the attached image.

Asked by EricM 10 months ago

Last reply by EricM 10 months ago

  • Archived

where downloads go

Suddenly Firefox is downloading my downloads to google drive. Why? I want them in my download directory, but changing the options in Settings/General/Download makes no d… (read more)

Suddenly Firefox is downloading my downloads to google drive. Why? I want them in my download directory, but changing the options in Settings/General/Download makes no difference. It is set to ask where a file should go, but does not. It is set to ask whether to open or save a file and it does not!

How can I get google drive out of this and save them to my desktop again?

Asked by Steve Ellis 1 year ago

Last reply by markwarner22 1 year ago

  • Archived

userChrome.css for Title Bar Broken by Latest Update

A friendly hello to whomever is kind enough to read this! Your help is greatly appreciated! The latest update caused an edit I made to my Profile's userChrome.css file t… (read more)

A friendly hello to whomever is kind enough to read this! Your help is greatly appreciated!

The latest update caused an edit I made to my Profile's userChrome.css file to be nullified. Now there's huge bar where the tabs toolbar used to be, and apparently it's not the title bar, as when I activate the title bar in "Customize Toolbar," this huge gets replaced by the actual toolbar.

I've attached my css code below for inspection. It used to work perfectly, but after the last update (133.0) it's no longer working. What can I do to fix this and have it like I had it prior to the latest update (133.0)?

userChrome.css File: `#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items {

 opacity: 0;
 pointer-events: none;

}

  1. main-window:not([tabsintitlebar="true"]) #TabsToolbar {
   visibility: collapse !important;

}

  1. main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar .titlebar-spacer {
       border-inline-end: none;

}

/* Adding empty space for buttons */

  1. nav-bar {

margin-right:140px; }

/* 15px for dragging whole window by mouse*/

  1. titlebar {

appearance: none !important; height: 15px; }

/* Fix for main menu calling by Alt button */

  1. titlebar > #toolbar-menubar {

margin-top: 10px; }

/* Move minimize/restore/close buttons to empty space */

  1. TabsToolbar > .titlebar-buttonbox-container {

display: block; position: absolute; top: 17px; right: 1px; }

  1. sidebar-box {
 min-width: 250px !important;

}`

Asked by SynTriarch 1 year ago

Last reply by cor-el 1 year ago

  • Archived

Trouble Viewing PDF's

Recently, I am unable to open PDF's on Firefox. When I go to another browser and access the same site (such as a bank) I am able to view the PDF. I have tried some of th… (read more)

Recently, I am unable to open PDF's on Firefox. When I go to another browser and access the same site (such as a bank) I am able to view the PDF. I have tried some of the suggestions regarding extensions etc, but nothing seems to work. Is there a solution? Thanks, SVS

Asked by ss724 11 months ago

Last reply by jscher2000 - Support Volunteer 5 months ago

  • Archived

Youtube videos stop after 1 minute. No pre-load, nothing.

Hi, I have been having this issue with Firefow & Youtube for some weeks now. What happens is that I launch a video, it plays well, but after 1 minute it stops. No … (read more)

Hi,

I have been having this issue with Firefow & Youtube for some weeks now.

What happens is that I launch a video, it plays well, but after 1 minute it stops. No buffering, no download of the next chunk of the video, nothing. It just stops. I have disabled all the addons I use and it changes nothing; in some cases, it stops the video from launching.

> Why this is not network related : on the same computer, at the same time, I can watch YT videos on Opera. Without issues. With uBlock origin enabled. And VPN. > Why I believe this is browser (ie. not computer) related : I have another computer, on the same network, that has the exact same issue. With less extensions, and no VPN. And again, when using Opera, YT works as intended, with uBlock origin.

There might be a setting related to video buffering to change, or something, I do not know. But this is beginning to be infuriating.

Is this a Google' crackdown on browsers not beging Chrome? Or am I an isolated case?

Thanks in advance !

Asked by laequ 1 year ago

Last reply by laequ 1 year ago

  • Archived

Constant Freezing

Ever since I got 133.03 my Dell cpu freezes a lot. Over the last hour it froze 15 times. This is terrible reliability. I hired Dell Tech Support and they checked my so… (read more)

Ever since I got 133.03 my Dell cpu freezes a lot. Over the last hour it froze 15 times. This is terrible reliability.

I hired Dell Tech Support and they checked my software and there were no issues. I have run advance Norton features and there are no problems. Therefore the issue is NOT with my 20 month Dell computer.

Firefox has always been reliable until late August. For four weeks it would freeze and lock up. by the end of Sept it was slightly better and then fine in November. Now it only freezes, put the mouse over the image and it freezes. Play with it for a while and it unlocks.

I am totally fed up with Firefox. I'll be starting my taxes soon and year end things and can't afford to have all these issues and rebooting to help eliminate the issue.

When is Firefox tech support going to help me? When is Firefox going to fix the issue? After Christmas I am looking into the Microsoft software......enough is enought!

Asked by Del 11 months ago

Last reply by jonzn4SUSE 11 months ago

  • Archived

google, and only google, has started appearing with a scroll bar in the middle and bottom of screen when in use

Hello, earlier in the day I pressed a keyboard shortcut on accident when picking up my keyboard and has changed google results quite dramatically. I grabbed my keyboard … (read more)

Hello, earlier in the day I pressed a keyboard shortcut on accident when picking up my keyboard and has changed google results quite dramatically. I grabbed my keyboard and had a menu pop up on the left side and after i closed it noticed my google results had a scroll bar now. The results page only presents itself on the left half of the screen and a scroll bar has appeared on both the right side, cutting off text, and bottom of the page. These scroll bars only move a tiny bit and are quite unnecessary, but makes scrolling a pain as I have to be sure I am outside the new scroll bar area as they take precedent from the main scroll bar. I have googled Firefox's keyboard shortcuts and haven't found the one i need to fix this. Before I'm asked, no I do not have crazy zoom on and no zooming in does not fix this problem.

Asked by Gnarkilly 1 year ago

Last reply by JLEES 10 months ago

  • Archived

Where do I turn on browser settings to allow sound?

I have Ring Cameras that I can access from my computer. When I click on the microphone and try to talk, I get a message that says I must "turn on browser settings for sou… (read more)

I have Ring Cameras that I can access from my computer. When I click on the microphone and try to talk, I get a message that says I must "turn on browser settings for sound". Where do I find that?

Asked by TBinLA 12 months ago

Last reply by markwarner22 12 months ago

  • Archived

Firefox 133 F11 + video full screen bug

Hi, I installed Debian 12 on my laptop. I'm using Firefox 133.0.3 from Flatpak. When the browser is in full screen and I display a video in full screen mode, strangely, … (read more)

Hi,

I installed Debian 12 on my laptop. I'm using Firefox 133.0.3 from Flatpak. When the browser is in full screen and I display a video in full screen mode, strangely, the video is not in full screen... It's on the top left corner and the rest of the page is in violet. I tested on different site, loading a local video and the issue is the same. I can't reproduce the issue on my desktop computer on Windows. When the browser is not in full screen (F11) and I put the video in full screen mode, there is no issue... I attached a screenshot of the situation.

Have you ever encountered this kind of issue? How to resolve it?

Thanks

Asked by lyamine 11 months ago

Last reply by lyamine 11 months ago

  • Archived

costco logon broke with update to Firefox 133.0

Cannot Log on to Costco.com site after update to Firefox 133.0 in Win 10 pro on 2 computers. Both are up-to-date with latest software. Entering valid account and passwor… (read more)

Cannot Log on to Costco.com site after update to Firefox 133.0 in Win 10 pro on 2 computers. Both are up-to-date with latest software.

Entering valid account and password cause the Costco logon page to freeze for a minute then returns to log on screen with no messages about failure

Same behavior on two computers. Log on to Costco via Microsoft Edge works perfectly (on 2 computers before any trouble shooting ). Logon with Firefox 133.0 works with every other site that I regularly use - Samsclub, Amazon, Yahoo mail, my own mail servers, NYtimes, WashingtonPost, Google, Walmart, and others

Trouble Shooting Steps taken with no change in the problem logon to Costco + Cleaned cache / cookies + Disabled virus protections + Disabled firewall + Stopped all security services + Rebooted + In settings | Privacy & Security: Added Costco.com as Exception for Enhanced Tracking protection + In settings | Privacy & Security: Added Costco.com as Exception - Cookies and Site Date

Asked by coisa_dois 1 year ago

Last reply by jonzn4SUSE 1 year ago

  • Archived

Copying entries in history: WYSINWYG

There is (IMHO) some missing functionality / unwanted feature or call it what you like (bug?). History -> Manage History select e.g. Last 7 days, right click on Name… (read more)

There is (IMHO) some missing functionality / unwanted feature or call it what you like (bug?).

History -> Manage History

select e.g. Last 7 days, right click on Name and select at least two attributes (you can choose from: Tags, Location,Most Recent Visit, Added and Last Modified)

Select the first entry of the list, all displayed fields are selected/highlighted.

Copy (either with the menu or with Ctrl-C) and paste it in your favourite text editor.

Why is only the URL copied? Other fields were also highlighted. Why are they not included?

This is WYSINWYG (what you see is not what you get).

It is possible to export bookmarks as an html file, so why is this not possible with history?

OK, it is possible to query the sqlite3 database directly to get some history info but it's a bit cumbersome.

To do so,

  copy the sqlite (places.sqlite) database to some safe place then open the database (with 'sqlite3 places.sqlite')
  get the history info you are interested in with a sqlite query,
  e.g. select title,visit_count,site_name,url,description,last_visit_date from moz_places where url like '%support%';

But there is no simple (AFAIK) way to convert 'last_visit_date' (an integer) to something human readable.

So either include the whole selection when something is copied (WYSIWYG) or provide export history as an html file.


ps: why is there on option 'other' in the list of 'topics' ? pps: I already posted this comment but it got lost somehow

Asked by sclaes 11 months ago

Last reply by jscher2000 - Support Volunteer 11 months ago

  • Archived

LassPass extention will not reinstall

Around 12/28/2024 my LastPass Password Manager extension dropped off my Firefox. When I tried to reinstall nothing happens except the flashing dots, which just go on. T… (read more)

Around 12/28/2024 my LastPass Password Manager extension dropped off my Firefox. When I tried to reinstall nothing happens except the flashing dots, which just go on. The LassPass extension does work on my Chrome browser (only used as a backup, Firefox using Duckduckgo rules)

Steps I have taken. Relaunched firefox. Rebooted laptop Deleted all Lastpass cookies. Did a firefox refresh. Tried to install older version of lastpass, they download but won't let me add.

Please Help? Thanks

Asked by eugenecant04 11 months ago

Last reply by markwarner22 11 months ago