• Locked

Firefox blocks website main image

Hello, I have requested support for this issue multiple times. Please assist. Firefox always displayed my website main image until the latest update. Now on any device … (read more)

Hello,

I have requested support for this issue multiple times. Please assist.

Firefox always displayed my website main image until the latest update. Now on any device that uses the Firefox browser my main website homepage image does not display leaving a huge white area on the homepage. This of course is now a major issue that did not exist with this same image before.

Nothing has changed in the programming of my website which is why I need support from your tech and if anything is blocked could Firefox please unblock my main image to show on all Firefox browsers?

Website: https://herlifetherapist.com

I look forward to your quick response.

Thank you

Asked by Mimi 14 hours ago

Last reply by cor-el 5 hours ago

  • Solved

Two Firefox apps showing in settings subfolder "Applications "

I was uninstalling another app when I noticed that there are two application icons for Firefox, one dated 3/25 2023 and one dated 9/26/2023 (just installed new update). … (read more)

I was uninstalling another app when I noticed that there are two application icons for Firefox, one dated 3/25 2023 and one dated 9/26/2023 (just installed new update). How do I get rid of the first application dated 3/25/2023?

Asked by taxquest 1 week ago

Answered by cor-el 4 days ago

  • Solved

Walgreens prescription disabled

I have been using the Walgreens web site to manage my many prescriptions without problems. Now, most of the Walgreens web site still works but the two menu options that n… (read more)

I have been using the Walgreens web site to manage my many prescriptions without problems. Now, most of the Walgreens web site still works but the two menu options that need to display my personal prescription details fail with the display "Sorry, an unexpected error occurred. Please try again later." I initially thought that a Walgreens update might be in progress so just waited. Walgreens support gave me the same answer that there was probably web site maintenance in progress. After 4 days of the same problem and answer, I ported enough information to login in to Walgreens with the Microsoft Edge browser and access to my prescription information worked without a problem. I believe this problem with Firefox started around the time I updated to 117.0.1 but I might not have this perfectly correct. I was just notified to update to 118.0 and did so. Firefox access still fails and Edge access still works. Thanks for any help you can provide. Windows 10

Asked by TrainClaude 1 week ago

Answered by zeroknight 5 days ago

  • Solved

Youtube block autoplay not working

Hello, Recently Firefox tends to start autoplaying a YouTube video if I am on the tab. Before it would not play the video if i am on the tab unless I physically press … (read more)

Hello,

Recently Firefox tends to start autoplaying a YouTube video if I am on the tab.

Before it would not play the video if i am on the tab unless I physically press play.

It still works if I open a YouTube video in a tab that is not active, it will not autoplay, but as soon as I hover over and click on that tab it will start playing, however I do not want this to happen, I want it to pretty much always be autoplay blocked regardless if tab is active or not and I want to physically press play in order for it to start.

How to revert it to that state?

My block audio and video setting in firefox is already turned on, not sure what to do, pretty sure I did nothing on my end.

Right now I have to use extension called "disable autoplay" just to get by.

Thanks guys!

Asked by HabibiFreshUFC 1 day ago

Answered by cor-el 1 day ago

  • Solved

Videos pause... video when not in foreground

So I have a video playing on firefox, but the moment it drops from the foreground, it immediately pauses the video (the actual video playback). The audio continues, but … (read more)

So I have a video playing on firefox, but the moment it drops from the foreground, it immediately pauses the video (the actual video playback). The audio continues, but the video stops until it is back in the foreground, at which point the video continues where it ought to. I have tried disabling the unload tabs in the config menu as well as disable the foreground pausing or whatever its called, as recommended by previous posts. I used to not have this issue at all, so I'm not sure what changed. Please help! Thank you.

Asked by Sarah Arnett 1 day ago

Answered by zeroknight 16 hours 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

118.0.1 Browser On Windows Does Not Allow Log On to Centurlylink.net Email

118.0.1 Browser On Windows Does Not Allow Log On to Centurlylink.net Email Works just fine on Edge. I think you broke something folks! … (read more)

118.0.1 Browser On Windows Does Not Allow Log On to Centurlylink.net Email

Works just fine on Edge. I think you broke something folks!

Asked by sidk_98 1 day ago

Answered by sidk_98 1 day ago

  • Solved

Can I keep two sets of mobile bookmarks seperate when syncing?

I know the answer to this is probably going to be along the lines of this is not possible, but I thought I'd ask anyway since none of the information is entirely clear. O… (read more)

I know the answer to this is probably going to be along the lines of this is not possible, but I thought I'd ask anyway since none of the information is entirely clear. Or answers my exact question.

I have one desktop install of firefox and I have two android ones. I have all three synced to one firefox account, so it's easy to grab links I saved while wiki diving on something. While this works perfectly for the desktop side of things, the mobile side is where the issue arises.

Currently all my bookmarks from both mobile firefox accounts are merged into one long set, regardless of device. While the desktop ones have their own folder. Is there a way to keep the bookmarks from each device in their own separate folder? Like say instead of having one big mobile bookmarks folder, having one named DeviceX, and the other DeviceY?

It's still semi functional on desktop where I have more screen real estate and have to deliberately go to the mobile bookmarks folder, but on the phones it can be confusing when a set of bookmarks from device 1 mixes randomly into those of device 2. As it can become a lot harder to keep track of things.

Now I know one can turn off syncing of bookmarks. This is not what I'm looking for as I do still want to be able to share them between all three devices. Just have them more organised.

I also know one can make different accounts for say work or personal, but again I want them all to sync, just not mix them into one list.

So in short is there a way to be able to have two android devices into a threeway sync and keep the bookmarks separate? Or is my only option the round abound way of making subfolders and hope I remember to save in those?

Thanks either way.

Asked by Elyndra 1 month ago

Answered by jscher2000 - Support Volunteer 1 month ago

  • Solved

How do I turn off web translation in Firefox 118.0.1??

How do I turn off web translation permanently for ALL pages in Firefox 118.0.1?? It´s the most annoying feature so far from Firefox. Even if I delete all languages in pre… (read more)

How do I turn off web translation permanently for ALL pages in Firefox 118.0.1?? It´s the most annoying feature so far from Firefox. Even if I delete all languages in preferences, it shows up on every page I visit.

Asked by gjensse 5 days ago

Answered by TyDraniu 4 days ago

  • Solved

TLS Extensions 65037 during client hello since firefox 118 (Windows)

Hello, I see with windows Firefox version 118 a TLS extension id 65037 on every client hello handshake containing a bunch of data. Does somebody know what this extension… (read more)

Hello,

I see with windows Firefox version 118 a TLS extension id 65037 on every client hello handshake containing a bunch of data. Does somebody know what this extension is used for? I couldn't find anything about this on the web or in the firefox docs / release notes. Other browser (chrome / edge) don't have this extension in use.

Thanks

Asked by Lukasz 1 day ago

Answered by zeroknight 1 day ago

  • Solved

Firefox just stops working and has black screen after using it at random times

Firefox just turns into a black screen and becomes unusable. It has been happening for a long time now and i have checked RAM and CPU usage and they are all fine, as I ex… (read more)

Firefox just turns into a black screen and becomes unusable. It has been happening for a long time now and i have checked RAM and CPU usage and they are all fine, as I explored potential causes.

I will be using firefox and it just turns all black on all screens and is completely unusable. To use it again I have to force close all windows and reopen it and it works again.

This is a frequent issue that I have seen

Asked by K_A 3 weeks ago

Answered by zeroknight 3 weeks ago

  • Solved

bookmarks thumbnails

Hello, what's wrong with the bookmarks thumbnails, that they don't display properly (not as the site's logo), only some default ones that look ugly. Only some tabs have … (read more)

Hello, what's wrong with the bookmarks thumbnails, that they don't display properly (not as the site's logo), only some default ones that look ugly. Only some tabs have thumbnails. I have freshly installed firefox on a new PC and I've been using it for another day and nothing changes, I visit these websites constantly and these icons still look like this. It will stay like this or is it some browser error ?

Greetings

Tom

Asked by bruno.funkyzeit 2 days ago

Answered by bruno.funkyzeit 1 day ago

  • Solved

Fuentes pixeladas en algunas páginas con Debian 12

Hola. Mi ordenador tiene Debian 12. Utilizo Firefox 118, instalado a través de Flatpak. El problema que tengo en algunas páginas es que veo las fuentes pixeladas y la im… (read more)

Hola. Mi ordenador tiene Debian 12. Utilizo Firefox 118, instalado a través de Flatpak. El problema que tengo en algunas páginas es que veo las fuentes pixeladas y la impresión es muy defectuosa, hasta el punto de no entender lo que aparece escrito. Esto sólo pasa en algunas páginas.

Si descargo directamente Firefox desde la página de Mozilla y abro la paǵina con una configuración limpia del navegador, las fuentes se ven correctamente; sin embargo, si sincronizo los datos de usuario, instalándose los datos, extensiones y demás las fuentes en determinadas páginas se ven mal.

Desactivé las extensiones pero el problema no se resuelve. Desde una instalación limpia de Firefox instalé una a una las extensiones y complementos, pero no logré reproducir el problema. Borré incluso la caché del navegador, pero nada. Y también sincronicé los datos de usuario en una instalación de Firefox en Fedora, pero el resultado es también negativo.

Alguna idea?

Gracias.

Asked by Xosé Manuel Baños García 4 days ago

Answered by Xosé Manuel Baños García 2 days ago

  • Locked

how to download and install an older version of Firefox

I currently am running FF vers. 109.0.1 64 bit on Win 10 pro. I don't like what I've been reading about the latest update, my machines are old and I'm not ready to upgra… (read more)

I currently am running FF vers. 109.0.1 64 bit on Win 10 pro. I don't like what I've been reading about the latest update, my machines are old and I'm not ready to upgrade so I don't want an even more overloaded/uses up more CPU, etc., version of Firefox. I don't have complex needs in a browser, so some of the "upgrades" haven't been useful for me or have made using FF more difficult.

  I found a list of what I guess are older versions but no information was provided on how to choose a version of say v. 110, to make sure it's the right one for my laptop and/desktop (or the one that will work w/the fewest problems) that it's in English, etc.   
  My impression is that FF is mostly worked on by people who have a variety of needs & interests so increasing sophistication is what they want and that's fine, I'd like to keep using FF w/my current machines, w/as simple a version ,ie., useful for an unsophisticated user.    Is that possible?    If so, I'd like to upgrade to 110 64 bit or perhaps 111 64 bit unless either or both had huge security holes, etc and many users found they weren't very functional.   I do have security software.

Asked by azure7 1 month ago

Last reply by azure7 2 days ago

  • Locked

NEW: reorder icons in add-on bar, FF 118

New Answer to Old Question: FF 118.0.1 Snap for Ubuntu 22.04.3 LTS, Try FF Hamburger Menu > More Tools > Customize toolbar > Cursor NOW Becomes Hand tool. Move … (read more)

New Answer to Old Question: FF 118.0.1 Snap for Ubuntu 22.04.3 LTS, Try FF Hamburger Menu > More Tools > Customize toolbar > Cursor NOW Becomes Hand tool. Move Icons, Select: Done in lower Rt Corner and Enjoy. Seems to Hold After Reboot.

Know this not a Q. But couldn't find info anywhere else. Now more know. Tnx

Asked by user747161 2 days ago

  • Solved

HSTS issue on vercel deployed app

Hello, I deployed my NextJS app on Vercel, but I cannot access my deployed app through firefox because of HSTS. I tried to access several sites with domain .vercel.app … (read more)

Hello,

I deployed my NextJS app on Vercel, but I cannot access my deployed app through firefox because of HSTS.

I tried to access several sites with domain .vercel.app but the issue persists.

I can access all sites with ".vercel.app" domain just fine on other browsers except Mozilla Firefox.

I already looked for solution on the internet such as:

  1. Removing entry on SiteSecurityServiceState.txt
  2. Forget site
  3. Clear browser cache & history
  4. Restart browser

Any help will be appreciated.

Thank you for your time and attention.

Asked by Muhammad Fikri Syahid 3 days ago

Answered by cor-el 3 days ago

  • Solved

Right Click Drop Down Menu Displaying Icons on one PC

Since the latest download one of my 3 win10 PC's is displaying icons on top of the text. Firefox is up to date at Ver 118.0.1 (64-bit) I expect its a setting but I cannot… (read more)

Since the latest download one of my 3 win10 PC's is displaying icons on top of the text. Firefox is up to date at Ver 118.0.1 (64-bit) I expect its a setting but I cannot find it. Screenshot attached. TIA KR's Andy B

Asked by Andy B 3 days ago

Answered by Terry 3 days ago