Showing questions tagged: Show all questions
  • Archived

Bookmarks Dropdown Now has "Other Bookmarks" and 2x (twice) "Manage Bookmarks"! Help.

Good day, It would appear that there was an update in the past 24hrs because my tabs appear different (rounder). However, now my bookmarks drop-down menu is all differen… (read more)

Good day,

It would appear that there was an update in the past 24hrs because my tabs appear different (rounder). However, now my bookmarks drop-down menu is all different and messed-up, and I can't delete the things added. Please see the screenshot enclosed...

I now have "Manage Bookmarks" at the top - which is fine. I have "Other Bookmarks" - which I thought I killed a LONG time ago. I have an ADDITIONAL "Manage Bookmarks" at the bottom - which seems redundant, and excessive.

I've done my homework, tried tinkering with old solutions. I cannot delete, move, rename, hide or change any of these. I would ideally like to remove everything except the 1st "Manage Bookmarks" at the top. That seems reasonable.

Thanks for your time and help! William (FF89)

Asked by William K. 2 years ago

Last reply by William K. 2 years ago

  • Solved
  • Archived

moving tabs back to below menu bar

Firefox updated and now my tabs are above the address bar, I hate it. I have went through all the information I could and created a new chrome folder, downloaded the css … (read more)

Firefox updated and now my tabs are above the address bar, I hate it. I have went through all the information I could and created a new chrome folder, downloaded the css and changed user preferences but it sets the tabs to the bottom of the screen not just below the address bar. I think I need a different set of code for the css but cant find a copy. Does anyone know what to do?

Asked by sharkeyandgeorge 2 years ago

Answered by sharkeyandgeorge 2 years ago

  • Solved
  • Archived

Bookmarks Menu - why does the 'Manage Bookmarks' entry appears twice?

Thanks to Proton expanding my Bookmarks Menu off the bottom of the screen, I was re-arranging my bookmarks folders. While wondering which of my folders I had to prune, I… (read more)

Thanks to Proton expanding my Bookmarks Menu off the bottom of the screen, I was re-arranging my bookmarks folders. While wondering which of my folders I had to prune, I noticed another in-built redundancy. The entry "Manage Bookmarks Ctrl+Shift+O" appears twice, at the top and the bottom of the menu. Incidentally the bottom entry is misaligned (Firefox v89 on Windows).

Is there a particular reasons for this duplication? Can I remove either of these entries?

Asked by hutcheonke 2 years ago

Answered by cor-el 2 years ago

  • Archived

Search engine add-ons

The search engines I've added do not appear in the list after clicking the green + sign in the search box and they do not appear in the list in the options either. I use… (read more)

The search engines I've added do not appear in the list after clicking the green + sign in the search box and they do not appear in the list in the options either. I used the "add more search engines" found in the bottom of the search engines list to find the missing engines and add them again, but when I find the engine I want to add there is only the "remove" button. So this tells me the missing engines in the list are still there but not accessible. I tried removing the added search engine and then adding it again but this did not make them appear in the search engine list. Everything was working fine until getting the last update before Firefox 89. Is there a way to fix this???

Asked by heyfucyou 2 years ago

Last reply by sideburns 1 year ago

  • Solved
  • Archived

What content is required in userChrome.css to move the tabs bar under all other bars?

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does N… (read more)

Every solution which I have found for Firefox 89 "Proton" so far which moves the Tabs Bar below the Navigation Bar (AKA "address bar"), with the Menu Bar above it, does NOT move the Tabs Bar below the Bookmarks Bar. The Bookmarks Bar appears to be overwritten and blank, and occupies space below the Menu Bar, Navigation Bar, and Tabs Bar. This empty space separates the three bars which are implemented and the content of the currently-selected tab below it.

Currently, my userChrome.css file is a copy posted by Cor-el (?):


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* TABS: below nav-bar - fixed for 108+,113+ */

/* ROOT -variables */
*|*:root {
  --tab-toolbar-navbar-overlap: 0px !important;
  
  --tab-min-height: 25px !important; /*override density*/
  --tab-min-width:  80px !important; /*override default*/
}

/* TABS: below nav-bar - no longer needed in 113+ *//*
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {
  -moz-box-ordinal-group: 10 !important;
  order: 10 !important;
}
#TabsToolbar {
  -moz-box-ordinal-group: 1000 !important;
  order: 1000 !important;
}
*/

/* TABS: position */
#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 100vw !important;
}

/* for 107 and lower - disable this rule in 108 and newer *//*
#tabbrowser-tabs {
  width: 100vw !important;
} */

/* navigator-toolbox: PADDING */
*|*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
  padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*ADJUST*/
  position: relative !important;
}

/* TABS: HEIGHT */
#tabbrowser-tabs,
#tabbrowser-arrowscrollbox,
#tabbrowser-tabs .tabbrowser-tab {
  min-height: var(--tab-min-height) !important;
  max-height: var(--tab-min-height) !important;
}

#tabbrowser-tabs,
.tab-stack,
.tab-content {
  height: var(--tab-min-height) !important;
}

/* TABS: APPEARANCE */
#TabsToolbar {
  height: var(--tab-min-height) !important;
  margin-bottom: 1px !important;
  box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important; /*OPTIONAL*/
  background-color: var(--toolbar-bgcolor) !important;
  color: var(--toolbar-color) !important;
}

/* indicators - hide  */
.private-browsing-indicator {display: none !important;}
.accessibility-indicator    {display: none !important;}

/* window controls in full screen - hide*/
#TabsToolbar #window-controls {display: none !important;}

/* caption buttons on tab bar - hide */
*|*:root[tabsintitlebar]:not([inFullscreen="true"])
 #toolbar-menubar[autohide="true"] ~ #TabsToolbar
 .titlebar-buttonbox-container {display: none !important;}
________________________________________________________________________________________________

Evidently, the text editor for this website does several things to the above original text that, frankly, seem unnecessary and undesirable. The .CSS file is just an unformatted text file, so what is the problem with simply copying its contents and pasting it in to the body of this post?

Which is also to say that I do NOT have a clue as to what any line in the file is meant to do, what effect it has, why it is even in the file at all, or why it is written in the way that it is. So DO NOT tell me that I "CAN" create a Cascading Style Sheet on my own when I cannot even modify one that has been provided.

On the face of it, something is missing from the above CSS text. What change needs to be made to the above content so that the Bookmark Bar will appear between the Navigation Bar and the Tabs Bar??

Thank-you very much for your time and attention to this request for assistance.

Asked by Blacklisted 2 years ago

Answered by DB-1 2 years ago

  • Solved
  • Archived

White line on the bottom of the screen

When I use firefox on my main display (1920x1080 144h 16:9) in full screen there is a noticeable white line in the bottom, not using full screen fixes it, but a pain in t… (read more)

When I use firefox on my main display (1920x1080 144h 16:9) in full screen there is a noticeable white line in the bottom, not using full screen fixes it, but a pain in the ass to resize it all the time. I tried using the browser on my secondary smaller display (1920x1080 60h 16:9) and there is no white line. This seems to be a bug, how do i fix it?

Asked by TheSpiffyOne 2 years ago

Answered by TheSpiffyOne 2 years ago

  • Archived

Having trouble with Firefox being slow when first starting

Ever since version 88 or 89 Firefox has started being slow to load. I have tried everything. Uninstalled it, reinstalled it. Started it in safe mode. Started it without t… (read more)

Ever since version 88 or 89 Firefox has started being slow to load. I have tried everything. Uninstalled it, reinstalled it. Started it in safe mode. Started it without the 4 addons I use. Refreshed it. Started it as a new installation with nothing on it without signing in. People have tried to direct me to troubleshooting and basically threw up their hands and chalked it up to user error. All why Chrome and Brave with all the same settings and addons open immediately and run smoothly with no issues. So I know it’s not user error. There have been a few updates for Firefox but none of them fixed anything. No one has been able to help me fix the issue. I don’t know what it is and have never had this issue before with any browser. It’s slow loading the first time I open it and then works fine afterwards, albeit more slowly than Chrome or Brave. Also, Firefox is installed on my SSD drive in my gaming laptop running more than enough memory and with a Nvidia 1060 with updated drivers.

Asked by Dyrelogan 2 years ago

Last reply by Tombarkas 1 year ago

  • Archived

Checking for updates will get stuck, while opening via geckodriver in Firefox

Hi Team, While opening Firefox web browser via Geckodriver, and when we open the page: about:preferences if we scroll down to Firefox update, It will get stuck there fo… (read more)

Hi Team,

While opening Firefox web browser via Geckodriver, and when we open the page: about:preferences

if we scroll down to Firefox update, It will get stuck there for indefinite time in "Checking for updates". Can someone look into this issue.

I need to automate the way by which it checks if it is updated or not. Kindly let me know if there are any other steps to check the same. Though above issue is i feel a bug and that is the reason we are writing you down.

Asked by vjain77 2 years ago

Last reply by reloadedx23 1 year ago

  • Archived

Firefox plays a streaming video, but stops after a few minutes

Hello, I've just recently been experiencing this problem. I would play a Youtube video, but after a few minutes, it would just stop, no error message. It just stops. … (read more)

Hello,

I've just recently been experiencing this problem.

I would play a Youtube video, but after a few minutes, it would just stop, no error message. It just stops.

I then reload the page, but then it plays with no audio. I would have to close Firefox and restart the video, just to have it stop again after a few minutes.

I have the latest version of Firefox installed. I've tried refreshing the Firefox setup, uninstalling and reinstalling, reinstalling the video drivers, but nothing seems to be solving the problem.

Video plays just fine with Chrome or Edge.

Windows 10 Pro (Made sure it was up to date as well). 250mbps connection

Asked by Martin 2 years ago

Last reply by FredMcD 1 year ago

  • Locked
  • Archived

New tab background color

Whenever I open a new tab using the + sign the background color is black. I have tried everything I can think of and what I found on the web. Nothing works I hate the … (read more)

Whenever I open a new tab using the + sign the background color is black. I have tried everything I can think of and what I found on the web. Nothing works I hate the black background. I want white with text in black.

Asked by The Mason 2 years ago

Last reply by cor-el 1 year ago

  • Solved
  • Archived

How to disable annoying pop up for update reminder FF89+

Does anyone know any way to force Firefux [Ver 89.0.2 64bit] to stop the repetitious and constantly annoying pop-up that flashes on open, restart, or randomly appears, re… (read more)

Does anyone know any way to force Firefux [Ver 89.0.2 64bit] to stop the repetitious and constantly annoying pop-up that flashes on open, restart, or randomly appears, reminding me to once again update the apparently flawed software. I just updated yesterday!!!! Can I not trust that the programmers know what they're doing and that the system can actually work as expected without the intrusive proof that they screwed up again?! This is the worst business decision to make these things interfere with my workload. Every firefuxn day there's a new update alert!!! It makes me not trust this browser...

Asked by Shuriken Sky 2 years ago

Answered by FredMcD 2 years ago

  • Archived

Browser under Remote Control

I keep getting this: URL is highlighted red/grey stripes. The robot head icon is now in the URL box and it says "Browser is under remote control (reason Dev Tools). Wha… (read more)

I keep getting this: URL is highlighted red/grey stripes. The robot head icon is now in the URL box and it says "Browser is under remote control (reason Dev Tools).

What is it? how do I get rid of it?

Asked by klg61 2 years ago

Last reply by cor-el 1 year ago

  • Archived

How to get disable the firefox update popup

I don't want to update my firefox. I was able to disable automatic updates. But the popup keeps coming once in a while. I need to get rid of that popup somehow. Please l… (read more)

I don't want to update my firefox. I was able to disable automatic updates. But the popup keeps coming once in a while. I need to get rid of that popup somehow.

Please let me know if there is a way to disable it other than collapsing NAV Bar.

Asked by yash292k11 2 years ago

Last reply by jkeating2 1 year ago

  • Solved
  • Archived

search box on Firefox home page

Trying to use the seach box in the centre of the Firefox homepage (google search engine) .. everything I type goes up to the address bar . Tried changing settings - I se… (read more)

Trying to use the seach box in the centre of the Firefox homepage (google search engine) .. everything I type goes up to the address bar . Tried changing settings - I see there's a search box option in the 'tool bar' which looks to be up at the side of the address bar. cant understand why we need another one as well as the one in the centre.

Also by turning off suggestions and not choosing the 'search box option in the 'tool bar' , the address bar is now only accepting URLs so searching isnt working.

So ..1. Is the search box in the centre no use?

        2.  Does search work with all suggestions turned off?

Asked by brian.pitchford 2 years ago

Answered by TyDraniu 2 years ago

  • Locked
  • Archived

Suddenly cannot open local .py files (Python source files) as plain text

Hello. Up until recently, I could click a link to a locally stored Python source file (.py extension) and it would display as a plain text file in Firefox. This is what… (read more)

Hello.

Up until recently, I could click a link to a locally stored Python source file (.py extension) and it would display as a plain text file in Firefox. This is what I want; e.g., it is a way that I view my notes, refer to examples, and so on.

Starting a few days ago, when I click such a link, I now get a pop-up window with the two options "Open with" or "Save file." I have tried a number of things to get back to the old behavior, including deleting the handlers.json file in my Profile folder, running a full Refresh, and creating a new profile. None of these got me back to the old behavior: displaying the .py file as plain text.

If I set the "Open with" option in that pop-up window to Firefox, I just keep getting the pop-up over and over again, while a new tab is created each time.

Note: if I look at a .py file on GitHub, there is no problem: again, the file just displays.

I suspected this behavior is connected with my having installed the latest version of Python (3.9.6) a few days ago, and I just confirmed this by updating Python on another machine. That is, on the other machine, the .py file would display as plain text until just now, after I update Python there.

So, I believe the Python installation is the cause of the problem, but, nonetheless, it seems to me that I should be able to set (or unset?) something within Firefox to make .py files open as plain text, as they used to.

Any ideas?

Thanks in advance.

Asked by bjkeefe 2 years ago

Last reply by bjkeefe 1 year ago

  • Archived

Black background problem

even when disabled my background colour keeps reverting to black in firefox I have disbled dark option in themes but it still reverts. I have set text to black and backgr… (read more)

even when disabled my background colour keeps reverting to black in firefox I have disbled dark option in themes but it still reverts. I have set text to black and background to white.

Asked by arielbooks 2 years ago

Last reply by jscher2000 - Support Volunteer 1 year ago

  • Locked
  • Archived

How to select camera?

On Firefox 90 on Ubuntu 20.04, when a site asks for camera and microphone permissions, it’s not possible to select any device anymore. It just shows the default camera an… (read more)

On Firefox 90 on Ubuntu 20.04, when a site asks for camera and microphone permissions, it’s not possible to select any device anymore. It just shows the default camera and the default microphone.

Earlier Firefox releases used to show a selection list for the camera and also another one for the microphone.

My default camera is the one built into the laptop and I would like to use an external one that has adequate picture quality.

Can you please help selecting a camera with the new Firefox?

Asked by gdukai.laptop 2 years ago

Last reply by UniQMG 1 year ago