• தீர்வுற்றது
  • Archived

Firefox is not loading some images, Linux Mint 20.3

Hi, I am using Linux Mint 20.3, 64-bit and both Firefox and Chrome are not loading images for me on certain websites (i.e. okcupid). In particular, I am noticing that im… (மேலும் படிக்க)

Hi,

I am using Linux Mint 20.3, 64-bit and both Firefox and Chrome are not loading images for me on certain websites (i.e. okcupid). In particular, I am noticing that images will actually load for a split second and then disappear moments later.

I've tried disabling my adblockers, deleting my cookies and cache, running Firefox in Troubleshoot and Diagnose mode, running Chrome in Incognito mode, and evening uninstalling and reinstalling Firefox. Still the issue persists.

I followed the advice here: https://support.mozilla.org/en-US/kb/fi ... s-not-show

Any advice or suggestions would be most welcome.

Thanks, Chris

Asked by Christopher Broski 1 வருடத்திற்கு முன்பு

Answered by Christopher Broski 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

Gmail site doesn't open despite Youtube and Translator sites are ok, even on Chrome Browser

em pt-br: Olá Devido ao fato do Chrome não manter minhas credenciais e toda vez que eu iniciava este browser eu tinha que fornecer meu login e senha além do fato do Sup… (மேலும் படிக்க)

em pt-br:

Olá

Devido ao fato do Chrome não manter minhas credenciais e toda vez que eu iniciava este browser eu tinha que fornecer meu login e senha além do fato do Suporte deles não ter resolvido o problema, eu decidi mudar para o Firefox apesar de não ser o mais legal nem prático e intuitivo para se navegar como o Opera e o Vivaldi, mas sim por popularidade.

-O problema: Desde ontem, a página do Gmail não abre, isto é, mostra uma página totalmente em branco conforme anexo, apesar do link estar correto e, na verdade, eu utilizar os links dos Favoritos para diminuir a digitação e aumentar a agilidade.

-Minhas tentativas de solução: Eu desabilitei todas as extensões do Firefox (eu eu já utilizava mesmo antes do problema ocorrer); Eu executei uma limpeza geral utilizando o CCleaner; Eu abri o Chrome e, para variar, me loguei (por causa do problema mencionado acima) e a página do Gmail é exibida corretamente com todos os e-mails de hoje; Eu copiei este link do Gmail, no Chrome, para utilizar no Firefox porque estavam diferentes mas mesmo assim o problema persiste.

Acabaram as ideias

Obrigado

PS: Como inserir mais imagens porque só uma é permitida?

english: Hello

Due to Chrome not keeping my credentials and every time I started this browser I had to provide my login and password in addition to the fact that their Support didn't solve the problem, I decided to switch to Firefox despite not being the coolest not practical and intuitive to navigate like Opera and Vivaldi, but by popularity.

-The problem: Since yesterday, the Gmail page does not open, that is, it shows a completely blank page as attached, although the link is correct and, in fact, I use the Favorites links to reduce typing and increase agility.

-My solution attempts: I disabled all Firefox extensions (I was using them even before the problem occurred for the first time); I performed a general cleanup using CCleaner; I opened Chrome and for a change I logged in (because of the problem mentioned above) and the Gmail page displays correctly with all of today's emails; I copied this link from Gmail, in Chrome, to use in Firefox because they were different but the problem still persists.

the ideas finished

TY

PS: how to insert more images because only one is allowed? (joined printscreens)

Asked by Theosz 2 ஆண்டுகளுக்கு முன்பு

Answered by Theosz 2 ஆண்டுகளுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Small font size on some websites

Firefox is displaying a smaller font on some websites. It only does it new windows, not in a private window and other browsers are fine. Screenshots attached show the co… (மேலும் படிக்க)

Firefox is displaying a smaller font on some websites. It only does it new windows, not in a private window and other browsers are fine.

Screenshots attached show the correct size (first attachment) and the incorrect smaller size (second attachment).

It's not windows accessibility aka ease of access, as nothing else is affected. All pages are on 100% zoom. I've gone to settings -> font -> advanced and the "Allow pages to choose their own fonts, instead of your selections above" is ticked.

Any ideas please?

Asked by ldene 1 வருடத்திற்கு முன்பு

Answered by cor-el 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

the typewriter animation has deviation only on firefox?the first 3-4 letters is not showing!

Hello, this is html code: <div class="home-page-image-container"> <img src="https://webdesignleren.com/wp-content/uploads/2023/07/auto-reparatie-in-hoogvliet… (மேலும் படிக்க)

Hello, this is html code:

<div class="home-page-image-container">
  <img src="https://webdesignleren.com/wp-content/uploads/2023/07/auto-reparatie-in-hoogvliet.webp" alt="auto reparatie" />
  <div id="app"></div>
	  </div>

and this is Javascript code:
<script src="https://unpkg.com/typewriter-effect@latest/dist/core.js"></script>
<script>

var app = document.getElementById('app');

var typewriter = new Typewriter(app, {
    loop: true
});

typewriter.typeString('Home Developer')
    .pauseFor(2500)
    .deleteAll()
    .typeString('Web Designer')
    .pauseFor(2500)
    .deleteAll()
    .typeString('<strong>FrontEnd Developer</strong>')
    .pauseFor(2500)
    .start();

</script>

and this is CSS code:

#app{
  text-align:center;
  font-size:50px;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-clip:border-box;
   text-fill-color: transparent;
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  animation: textclip 2s linear infinite;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

the typewriter animation with text on chrome,edge,opera is working very wel . only on firefox is not working correctly. I see firefox has some problems with gradient.in this textwriter animation on firefox the first 3-4 letters are not showing and it has strange behaviour. I tried in this way to solve the problem:

 #app {
      text-align: center;
      font-size: 50px;
      white-space: nowrap;
      overflow: hidden;
    }

    #app::before {
      content: attr(data-text);
      display: inline-block;
      width: 0;
      color: #231557;
      animation: typewriter 4s steps(40) infinite, colorTransition 4s infinite;
    }

    @keyframes typewriter {
      from {
        width: 0;
      }
    }

    @keyframes colorTransition {
      0% {
        color: #231557;
      }
      50% {
        color: #ff1361;
      }
      100% {
        color: #ff1361;
      }
    }
 <div id="app" data-text="Hello, Gradient!"></div>

but it didn't helpt . I tried many ways but the problem is the same . can some one tell me how I can solve this problem with firefox . link text any idea is welkome it has to be some way to solve this problem . I used chatgpt but it didn't help. thanks johan

Asked by hovhannes111 1 வருடத்திற்கு முன்பு

Answered by Medhasree Suram 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

Shopify not working

I am trying to set up a Shopify page. It was working fine until today. The page is now redirecting me to the sign in page every time I attempt an action. Shopify support … (மேலும் படிக்க)

I am trying to set up a Shopify page. It was working fine until today. The page is now redirecting me to the sign in page every time I attempt an action. Shopify support says that they were able to perform these actions on my account from their end. Also, I was able to complete the tasks from Microsoft Edge. Any suggestions.

Asked by mikeegan2000 1 வருடத்திற்கு முன்பு

Answered by zeroknight 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

Amazon Parent Dashboard not functioning on Firefox (but works on Chrome)

Anyone else had the problem of not being able to sign in to the Amazon Parent Dashboard via Firefox? But works on Chrome. Same on desktop and android versions of Firefox.… (மேலும் படிக்க)

Anyone else had the problem of not being able to sign in to the Amazon Parent Dashboard via Firefox? But works on Chrome. Same on desktop and android versions of Firefox.

Amazon chat support not helpful and just told me to use Chrome!

Asked by benshakespeare 6 மாதங்களுக்கு முன்பு

Answered by zeroknight 6 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

MNP Error Page on .mil

Trying to load .mil webpages (specific case in image) present an MNP error. For context; VPN on, connected to US server Same site tested in edge with VPN works. If anymor… (மேலும் படிக்க)

Trying to load .mil webpages (specific case in image) present an MNP error. For context; VPN on, connected to US server Same site tested in edge with VPN works. If anymore information is needed I can provide, thank you and happy holidays!

Asked by ninopachinko 1 வருடத்திற்கு முன்பு

Answered by jonzn4SUSE 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

Why are google sites (Youtube, Gmail and Search) getting disconnected?

Why are google sites (Youtube, Gmail and Search) getting disconnected when all other sites are still connected to the Net? This has been happening since November 2021. … (மேலும் படிக்க)

Why are google sites (Youtube, Gmail and Search) getting disconnected when all other sites are still connected to the Net? This has been happening since November 2021.

When that happens I close the FF and then immediately open it. Now the google sites work properly.

Never had that problem with other sites.....never!

Why the hell is this happening? Is FF responsible or Google?

So what is the solution?

Asked by Raz 2 ஆண்டுகளுக்கு முன்பு

Answered by jscher2000 - Support Volunteer 2 ஆண்டுகளுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

When I go to a certain web page (have only noticed this on this particular site), the place where a video should be is blue. Works in Edge.

Autoplay is allowed. Hardware acceleration turned off. Pictures attached.

Site is 9news.com

Asked by jkl1 2 ஆண்டுகளுக்கு முன்பு

Answered by Dropa 2 ஆண்டுகளுக்கு முன்பு

  • தீர்வுற்றது

Inter font not dispalying properly

I've installed Inter font from Google fonts (https://fonts.google.com/specimen/Inter) on my windows, but as you can see in the image, the font is not displaying correctly… (மேலும் படிக்க)

I've installed Inter font from Google fonts (https://fonts.google.com/specimen/Inter) on my windows, but as you can see in the image, the font is not displaying correctly in Firefox.

Asked by Aram 5 மாதங்களுக்கு முன்பு

Answered by jscher2000 - Support Volunteer 5 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

FireFox Not Rendering Code Properly

Counter code numbers do not show for me here with FF but do show for Safari (which I don't like): http://robfalcone.com/rf/ Embedded archive sows fine on this ONE site b… (மேலும் படிக்க)

Counter code numbers do not show for me here with FF but do show for Safari (which I don't like): http://robfalcone.com/rf/

Embedded archive sows fine on this ONE site but all others similar won't show it even tho all are set up exactly the same.

This form is showing correctly. https://www.denisericciardi.org/mailing-list/

This form is NOT. https://amherstrepublicans.org/mailing-list/

This archive shows correctly. https://www.denisericciardi.org/mailing-list/archive-2023/

The one embedded here does NOT. https://bedfordresidents.com/bra/mailing-list/newsletter-archive/


I have about 30 websites with these errors. The only ONE is this that has NO errors even tho setup exactly the same https://www.denisericciardi.org/mailing-list/archive-2023/

Asked by GadsdenGurl 1 வருடத்திற்கு முன்பு

Answered by jscher2000 - Support Volunteer 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

in-browser display

After the version 110 update, Firefox has issues displaying text in certain pages like Google Calc, PDF forms, online publication readers. The text seems to break up and … (மேலும் படிக்க)

After the version 110 update, Firefox has issues displaying text in certain pages like Google Calc, PDF forms, online publication readers. The text seems to break up and fade out. Navigating up and down the page often restores the missing text, but not all of it. Suck pages render without issue in Google Chrome. I am using Firefox in a Linux container within ChromeOS (stable channel), but this issue only started after the latest Firefox update.

It appears that the Firefox v. 111 update has solved this issue.

Asked by tischer.rw 1 வருடத்திற்கு முன்பு

Answered by tischer.rw 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

plugshare.com page is missing couple of crucial menu icons

When plugshare.com loads, there is a prominent search box at the top left corner. However it is missing the menu icon (see attached pic) as well as the search icon. This … (மேலும் படிக்க)

When plugshare.com loads, there is a prominent search box at the top left corner. However it is missing the menu icon (see attached pic) as well as the search icon. This is happening on 2 different machines running Ubuntu 22.04.

Please fix. Google Chrome displays just fine; see attached pic.

Asked by groundie 2 ஆண்டுகளுக்கு முன்பு

Answered by cor-el 2 ஆண்டுகளுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Last Update Broke 2fa login with Quickbooks

Last Update broke the ability to login to Quickbooks with 2FA

Asked by GeorgieH777 11 மாதங்களுக்கு முன்பு

Answered by cor-el 11 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

enormous rendering some html elements

Hello everyone, I need help because on Firefox ESR that runs on Debian some css appears really too big. In this example I will show the difference between Firefox and Ch… (மேலும் படிக்க)

Hello everyone,

I need help because on Firefox ESR that runs on Debian some css appears really too big. In this example I will show the difference between Firefox and Chrome. If I open this popup from Firefox it appears full width. In Chrome it appears correct. Also I noticed some Icons rendering incorrect.

How can I achieve this? Thannks

Asked by Simone M. 1 வருடத்திற்கு முன்பு

Answered by zeroknight 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

Whenever I use Firefox helper application weirdness...

Whenever I use Firefox 109.0 (on Ubuntu 22.04) to transfer money between savings and checking in my online banking account, I get a window pop-up that says "No Apps Avail… (மேலும் படிக்க)

Whenever I use Firefox 109.0 (on Ubuntu 22.04) to transfer money between savings and checking in my online banking account, I get a window pop-up that says "No Apps Available". This is something going on my bank's servers and shouldn't require Firefox or any local helper apps on my end to do anything. I will post the window that pops up. Has anyone else encountered this? And is there a way to disable these pop-up?

Asked by neutronJK 1 வருடத்திற்கு முன்பு

Answered by neutronJK 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

1 VIDEO WILL NOT SHOW UP ON YOU TUBE BUT DOES ON GOOGLE CROME

I UPLOADED VIDEO ON YOUTUBE LAST NIGHT THAT WILL NOT SHOW UP BUT DOES SHOW UP ON PHONE AND GOOGLE CROME

Asked by Denise Bella vlasis 8 மாதங்களுக்கு முன்பு

Answered by zeroknight 8 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

Can't login to Americanexpress.com

When I attempt to login it just spins and nothing happens. Works on Safari and Chrome. Opening DevTools I can see an error about "CORS Missing Allow Origin" but I don't … (மேலும் படிக்க)

When I attempt to login it just spins and nothing happens. Works on Safari and Chrome.

Opening DevTools I can see an error about "CORS Missing Allow Origin" but I don't have this issue with any other browser. I have disabled/removed all my browser add-ons and the issue persists. I have no problems logging in to any other site.

Asked by tamassia1 6 மாதங்களுக்கு முன்பு

Answered by zeroknight 6 மாதங்களுக்கு முன்பு

  • தீர்வுற்றது
  • Archived

'prefers-color-scheme' media query returns 'light' no matter what

I noticed this first when I had to force Google to go into dark mode even though firefox was already in dark mode. I have searched through some issue reports and have se… (மேலும் படிக்க)

I noticed this first when I had to force Google to go into dark mode even though firefox was already in dark mode.

I have searched through some issue reports and have seen a lot of people mentioning that their system theme is not being detected properly. This is not that issue. I can set the firefox "Website appearance" to dark or automatic at which point the UI of firefox itself does do into dark mode so no issues there. However if I go to a website that tries to query 'prefers-color-scheme' and set its theme accordingly it always returns 'light'. This is the case even if I set the 'layout.css.prefers-color-scheme.content-override' to 0 in about:config.

I used this website to test: https://septatrix.github.io/prefers-color-scheme-test/

The issue persists when opening a website in a private window.

Let me know if I need to provide additional information.

-Felix

Asked by felixbrakel 1 வருடத்திற்கு முன்பு

Answered by jscher2000 - Support Volunteer 1 வருடத்திற்கு முன்பு

  • தீர்வுற்றது
  • Archived

GroupMe photo upload broken for over a week

I frequently use GroupMe on desktop from Firefox, on two separate computers (a self-built desktop, and a Dell Latitude laptop). Starting sometime over a week ago, I have… (மேலும் படிக்க)

I frequently use GroupMe on desktop from Firefox, on two separate computers (a self-built desktop, and a Dell Latitude laptop).

Starting sometime over a week ago, I have been unable to drag & drop or otherwise upload photos in my chats. The only method that works is pasting direct URLs of JPGs.

In all other circumstances, I get the uploaded image error attached to this post.

Two different GroupMe support agents have said that, since image upload is still working in Edge, that it's a Firefox problem.

Tried clearing cache, site cookies, reset the browser, ran in troubleshooting mode...same result every time.

This is not the "image file size too big" error. I used to routinely post captures from the Snipping Tool, and I can't anymore.

I'm not sure where else to go to troubleshoot this. It's very annoying. Any suggestions?

Asked by weirderal 10 மாதங்களுக்கு முன்பு

Answered by weirderal 10 மாதங்களுக்கு முன்பு