Unable to open Zoom meetings via browser

I use Firefox as my browser and used to be able to go a web site or to a link from an instructor and when I clicked on the link or entered the class I was attending, the … (read more)

I use Firefox as my browser and used to be able to go a web site or to a link from an instructor and when I clicked on the link or entered the class I was attending, the Zoom meeting would automatically open. That doesn't work anymore. I have to "join via browser but I don't have the meeting id. Why has this become so difficult? Zoom denies being the problem so now I wonder if it's the browser.

Asked by vtjxdgqtcj 8 minutes ago

Can't save or add bookmarks

Currently unable to save, edit or add bookmarks. I have updated Firefox, refreshed Firefox, gone through Troubleshoot mode, cleared the startup cache, and deleted the "x… (read more)

Currently unable to save, edit or add bookmarks.

I have updated Firefox, refreshed Firefox, gone through Troubleshoot mode, cleared the startup cache, and deleted the "xulstore.json" in my profile folder.

Pls help this is driving me nuts + making me want to switch browsers. Thanks : )

Asked by tr 11 minutes ago

firefox won't go to any sites!!

Concurrent with the most recent automatic windows update (may or may not be the problem), Firefox with duck-duck-go will not go to almost any site. All I get is a spinni… (read more)

Concurrent with the most recent automatic windows update (may or may not be the problem), Firefox with duck-duck-go will not go to almost any site. All I get is a spinning icon or a blank page, not even any error messages. This was even true trying to go to this page until I restarted in trouble shooting mode. Until I can get Firefox working again I have been using Chrome with duck-duck-go. Note any search, i.e. 'hotels in Italy' or even 'MSN' do the same: spinning icon or blank page!! Any help would be appreciated. Also I noticed that my bookmarks were missing and there was no bookmarks drop-down on my tools line. I have run malware bytes and it showed clean, same with CCleaner. I have re-installed Firefox; no difference. Please help. and also, any way to find and replace my extensive bookmarks list? I have reduced my privacy to near zero and turned off firewalls and all limits I could find while testing for that. That did not change anything.

Asked by onefoozer 1 week ago

Last reply by onefoozer 13 minutes ago

userChrome.css - Help With Customizing Tabs (part 2)

Hi All, I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be ve… (read more)

Hi All,

I would like the content area of my tabs moved up so that the box is filled with the actual tab color, without the white background, and also the text will be vertically centered. Right now, the text is dropping too close to the bottom of the tab.

Had this looking very nice in FF 88 with the same code, as you can see in the attached images, but it seems to render differently in FF 115 ESR and FF 125.

Below is some code I used to style the tabs, but the problem exists without this code as well.

I've also included some "tabs on bottom" code I'm using as well at the very bottom.

Would sure like to get those Classic Toolbar Buttons working again too (shown in the second image), but that will be a later request :)

Any help is appreciated.

Thanks!

/* Highlight non-selected tabs on mouseover */ .tabbrowser-tab:not([selected]):hover .tab-content {

  background-color: #dbe3eb !important;

}

  1. TabsToolbar {
 -moz-box-ordinal-group: 3 !important;
 padding-top: 0 !important;
 padding-bottom: 0 !important;
 height: 25px !important;
 background-image: url("bkmr_back.gif") !important;
 border-top: 1px solid #afc0d2 !important;
 border-bottom: 1px solid #8698aa !important;

}

/* Background color of selected tab */ .tab-background[selected="true"] {

   background-attachment: none!important;
   background-image: none!important;
   background-color: #eef5fc !important;

}

/* Background color of non-selected tab */ tab-background:not([selected]) {

   color: #000000 !important;
   background-color: #c7d3e0 !important;

}

/* Border color & bold text for selected tab */

  1. TabsToolbar .tabbrowser-tab[selected] {
   font-weight: 700 !important;
   color: #000 !important;
   border-top: 1px solid #8698aa !important;
   border-left: 1px solid #8698aa !important;
   border-right: 1px solid #8698aa !important;

}

/* Border color & normal text for non-selected tab */

  1. TabsToolbar .tabbrowser-tab:not([selected]) {
   font-weight: 600 !important;
   color: #000 !important;
   border-top: 1px solid #afc0d2 !important;
   border-left: 1px solid #afc0d2 !important;
   border-right: 1px solid #afc0d2 !important;

}

/* -------------- TABS ON BOTTOM --------------- */ /* TABS: below nav-bar - updated for 89+ | 108+ | 113+ */

  • |*:root {
 --tab-toolbar-navbar-overlap: 0px !important;
 --tab-min-height: 25px !important; /* adjust */
 --tab-min-width:  80px !important; /* adjust */

}

  1. navigator-toolbox #TabsToolbar {
 position: absolute !important;
 bottom: 0;
 /* height: 27px !important; */
 height: 28px !important;
 width: 100vw !important;

}

/* navigator-toolbox - padding */

  • |*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
 position: relative !important; /*89+*/
 padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*adjust*/
 background-color: var(--toolbar-bgcolor) !important;

}

/* TABS: HEIGHT */

  1. tabbrowser-tabs,
  2. tabbrowser-arrowscrollbox,
  3. tabbrowser-tabs .tabbrowser-tab {
 min-height: var(--tab-min-height) !important;
 max-height: var(--tab-min-height) !important;

}

.tab-stack {

 height: var(--tab-min-height) !important;

}

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

}

/* drag space */ .titlebar-spacer[type="pre-tabs"], .titlebar-spacer[type="post-tabs"] {

 width: 40px;

}

/* Override vertical shifts when moving a tab */

  1. navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
 padding-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] #tabbrowser-tabs {
 padding-bottom: unset !important;
 margin-bottom: unset !important;

}

  1. navigator-toolbox[movingtab] > #nav-bar {
 margin-top: unset !important;

}

/* hide indicators and caption buttons */

  1. TabsToolbar .private-browsing-indicator {display: none !important;}
  2. TabsToolbar .accessibility-indicator {display: none !important;}
  3. TabsToolbar .titlebar-buttonbox-container {display: none !important;}
  4. TabsToolbar #window-controls {display: none !important;}

/* -------------- TABS ON BOTTOM --------------- */

Asked by Slouch 21 hours ago

Last reply by Slouch 17 minutes ago

Using the --new-tab and --search CLI options together doesn't work properly

When I use the `--search` CLI option, Firefox searches the supplied term in a new window. I want it to open itself in a new tab instead, so I tried out the following com… (read more)

When I use the `--search` CLI option, Firefox searches the supplied term in a new window.

I want it to open itself in a new tab instead, so I tried out the following combination of CLI options:

``` $ firefox --new-tab --search "example" ```

Firefox does search for the given term, but it opens itself in a new window instead of a new tab, thus ignoring the `--new-tab` option.

Am I doing something wrong?

Asked by wympo 1 hour ago

Last reply by wympo 31 minutes ago

Videos won't play or show error sign

Everytime i try to watch a video it says it can't play or it just sits there buffering. Youtube works but only lower quality, but every other site i go on doesn't. Twitch… (read more)

Everytime i try to watch a video it says it can't play or it just sits there buffering. Youtube works but only lower quality, but every other site i go on doesn't. Twitch won't load, other sites show Error Code: 102630. This is only a problem on my browser on my windows pc I have. On mobile the browser works great and has no problem showing videos so it a problem for my pc browser.. I've tried all of the steps, i've updated, i checked drm and even went into config to check there. But nothing works, it still can't load videos. I have version 125.0.3 and for me it's the latest one. I even turned off all of my add-ons to check if it works or not but nothing there either. It worked before, just now the latest two months it hasn't. What can I do in order for the videos to load? Thank you for your time.

Asked by Banilemim 48 minutes ago

Firefox Kiosk does not appear when I log in but does when I start it manually from the GNOME x-terminal

I have Ubuntu 22.04 (on a Dell Optiplex 3000) with a minimal installation. I downloaded Firefox 125, removed the SNAP Firefox and installed this Firefox with no issue. I… (read more)

I have Ubuntu 22.04 (on a Dell Optiplex 3000) with a minimal installation. I downloaded Firefox 125, removed the SNAP Firefox and installed this Firefox with no issue. I can run "firefox --kiosk" and Firefox runs in kiosk mode with no issue.

I have made some changes in the "about:config" part of Firefox. I have also made some changes to the Ubuntu keyboard shortcut list. There is only one user created on this system and I have configured Ubuntu to login this user automatically upon reboot.

However, if I setup Firefox --kiosk to start automatically (I use the gnome-session-properties application to achieve this) and then reboot, Firefox does run, but it does not appear on the screen. If I enter the "switch windows" keyboard shortcut (ALT-TAB), the Firefox kiosk appears.

So, is this something I can fix by changing the Firefox configuration, or is it an Ubuntu configuration change. If so, can anyone tell me what I should do, or have an idea how to debug this?

Asked by barrie.a.saunders 1 hour ago

Firefox is having trouble playing multiple sounds at once.

I've had this issue ever since switching to a new laptop. This issue is specifically within Firefox (I have tested this in other browsers and programs, and the issue isn'… (read more)

I've had this issue ever since switching to a new laptop. This issue is specifically within Firefox (I have tested this in other browsers and programs, and the issue isn't there. Everything else works perfectly fine!)

Essentially, whenever Firefox plays multiple sounds at the same time (for example, I use both youtube and discord in-browser) the second sound will briefly mute the other sound. (Going back to the discord-youtube example, if I am watching a youtube video and recieve a discord notification, the youtube video will pause for about half a second.) Or if a site has background audio but also plays a short audio clip when certain elements are clicked, for example, it will cause this "overlapping" issue. Again, this issue is only within Firefox.

I am using Windows 11 if that helps. I've already tried using a Firefox Refresh and peeking in about:config but I'm totally lost as to what I can try next, since I can't find any other examples of people with this issue online. Sometimes the issue briefly fixes itself but then reappears.

Asked by wygolvillage 2 hours ago

403 and 404 errors on firefox started 4.29.24

Starting yesterday firefox, no recent updates etc, gives a 403 error for several large corporate sites and 404 page not found for most paypal payment pages. These sites/p… (read more)

Starting yesterday firefox, no recent updates etc, gives a 403 error for several large corporate sites and 404 page not found for most paypal payment pages. These sites/pages work fine with Chrome. There were no changes by by myself to my firefox installation, not any antivirus changes.

Within the last hour today everything is working properly. What is going on? jn

Asked by buy21 2 hours ago

OneDrive workbook problem

So I have an Excel workbook in my onedrive from MS, It was working fine on my firefox browser in my Ubuntu OS, last week it started to delete my cell's information whenev… (read more)

So I have an Excel workbook in my onedrive from MS, It was working fine on my firefox browser in my Ubuntu OS, last week it started to delete my cell's information whenever I pressed the enter, tab or arrow keys, I contacted the MS support and they get me to opened the same file on a chrome browser and worked fine... I still want to use my firefox browser but this problem is very annoying, please help me sort it out!!!

Asked by ricardocrbb 21 hours ago

Last reply by ricardocrbb 3 hours ago

Hotmail through Firefox breaks my network card

I had a few issues with Hotmail and Firefox in the past as described in other posts. Now it has stepped up a gear. I can use the internet for anything, but the moment I o… (read more)

I had a few issues with Hotmail and Firefox in the past as described in other posts. Now it has stepped up a gear. I can use the internet for anything, but the moment I open my Hotmail account in Firefox my Lan card stops working. At first I had no idea it was Hotmail, I tried everything from switching cables to using wifi only. When it happened on wifi I realised every time I went into Hotmail on Firefox my network card stopped functioning and I had to restart the computer. The thing is, when I use Hotmail through Microsoft Edge nothing happens and all is well with the world!!! No network card shutdown. I could read between the lines but I'm no conspiracy theorist, however, I don't think the problem is with Firefox. Is there any solution? I don't use Edge and I don't want to start.

Asked by M Donaldson 6 days ago

Last reply by M Donaldson 3 hours ago

Tab/Program Brightness

Hello support, is there any way (other than the one plugin I found that did not work for some reason) to adjust firefox' general brightness (or that of an individual ta… (read more)

Hello support,

is there any way (other than the one plugin I found that did not work for some reason) to adjust firefox' general brightness (or that of an individual tab) ?

Also changing my monitors brightness would not work for me as I am trying to test a website I develop (using firefox to visualize it) and it is rather just the large difference between my editor (which's brightness you can not adjust) and the browser that is very unpleasent when I switch back and forth (like when trying to fix a bug).

Kindest regards.

Jonas Behr

Asked by jonas.behr 4 hours ago

Click shortcut for opening link in private mode

Hello, I'm looking for a way to add a shortcut, similar to: CTRL + Click = open link in new tab SHIFT + Click = open link in new window What I want it to do is open a l… (read more)

Hello, I'm looking for a way to add a shortcut, similar to:

CTRL + Click = open link in new tab SHIFT + Click = open link in new window

What I want it to do is open a link in a Private mode window, to avoid having to open the right-click menu.

I came across this person asking for something similar (they specifically want the private window to not appear on top, I do not care if it gets automatically focused or not) https://support.mozilla.org/bm/questions/1317416

The only answer links to a list of "command line options" and points to the private ones. I understand how you can use these to change how the Firefox shortcut behaves, or to open Firefox in a specific way from the "Run" command, but I do not know how, or if it is even possible to apply these settings to a specific shortcut-click combination.

Asked by deramos603 6 hours ago

Facing problem

How can I troubleshoot and resolve common issues with my Mozilla Firefox browser using the resources available on the Mozilla Support website?" … (read more)

How can I troubleshoot and resolve common issues with my Mozilla Firefox browser using the resources available on the Mozilla Support website?"

Asked by Joe Root 9 hours ago

ff pass words gone

hi can anyone tell me how to get my saved passwords back into ff. they got deleted somehow by Clean Disk app instructions ive found on web are for everything except wha… (read more)

hi can anyone tell me how to get my saved passwords back into ff. they got deleted somehow by Clean Disk app

instructions ive found on web are for everything except what i need thanks

Asked by bill 2 days ago

Last reply by bill 10 hours ago

ZOOM is fouled up & can't fix it, using NoSquint Plus

Still using Firefox 78.15.0 esr (64 bit) Am I correct that the toolbar icon " - | 100% | + " is the Firefox Zoom function? I have never been able to locate a toolbar ico… (read more)

Still using Firefox 78.15.0 esr (64 bit)

Am I correct that the toolbar icon " - | 100% | + " is the Firefox Zoom function? I have never been able to locate a toolbar icon for NoSquint Plus. I also have Theme & Font Size Changer, but it stopped working years ago. Anyway, working fine for many years, automatically setting the zoom on every tab to 150% so I can read it easily.

A few days ago I got into the NoSquint Plus preferences (NEVER OPEN THE HOOD !!!) , and wondered why it was set to chrome API instead of CSS API and changed it to see. That kind of broke it completely. Maybe changed other stuff trying to get it back...

At present, Firefox Default Zoom is set to 150% . NoSquint Plus is default full page 100% and default text only 150% There are no instructions telling me how these 3 settings will interact.

It seems that when I open NoSquint Plus Preferences and change the %, it works on all the tabs on that page, but not on any other page unless I open it & fiddle with it.

How do I get what I want? There is no "return to default settings" for NoSquint Plus.

Asked by FireFoxSucks 15 hours ago

Last reply by FireFoxSucks 15 hours ago

Cloudflare not working on DNS over HTTPS

I'm new to firefox and would like to set cloudflare for DNS over HTTPS but there seems to be an issue. If I set it to NextDNS the connection stays active. But if I set it… (read more)

I'm new to firefox and would like to set cloudflare for DNS over HTTPS but there seems to be an issue. If I set it to NextDNS the connection stays active. But if I set it to cloudflare it goes inactive with the error (NS_ERROR_NET_TIMEOUT_EXTERNAL). I tried setting a custom DNS to OpenDNS and got the same error.

I'm running Manjaro Linux if that make a difference.

Asked by frehseaccount 16 hours ago

New install, wrong email address choice.

New install of Firefox set up with a 'wrong' email account. Tried to use the 'Mozilla account' page to fix this by using secondary email and then making it primary. Bu… (read more)

New install of Firefox set up with a 'wrong' email account. Tried to use the 'Mozilla account' page to fix this by using secondary email and then making it primary. But the secondary email I want to use is not allowed by Firefox giving an 'Account already exists' error. What should I do?

Asked by harrigaauburn 18 hours ago