My email account

Now that my browser is Firefox I cannot get to my email or anything else on my computer. What must I do??? At one point I was signing in to Mozilla Firefox and it said t… (Lesen Sie mehr)

Now that my browser is Firefox I cannot get to my email or anything else on my computer. What must I do??? At one point I was signing in to Mozilla Firefox and it said that account already exists. This is very frustrating for an older geriatric. Please send me instructions to get back where I was. My present email address is [edited from public] @gmail.com.

Gelöst Archiviert 1 88

Do not know how to exit safe mode and enable extensions.

I am 82 years of age and did not grow up with the Internet. I have a total of only 8 hours of training on a PC. I have no idea how my PC got into 'safe mode' and now all … (Lesen Sie mehr)

I am 82 years of age and did not grow up with the Internet. I have a total of only 8 hours of training on a PC. I have no idea how my PC got into 'safe mode' and now all of my extensions are disabled. I do not know how to exit 'safe mode' to allow the extensions to be enabled again. I tried following the instructions as provided, but to no avail.

Gelöst 1 113

Animation CSS on my web site doesn't work on firefox

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox... here is my code: … (Lesen Sie mehr)

Hello, I made animations CSS on my web site and everything was working great on all browsers. I just see that it doesn't work anymore only in firefox...

here is my code:


/* -------------------------------------- */ /* ANIMATION ANE */ @keyframes mouvement-uniforme {

   0% 		{ animation-timing-function: linear; transform: translateX(-500px); }
   100% 	{ animation-timing-function: linear; transform: translateX(30px); }

}

@-webkit-keyframes webkit-mouvement-uniforme { 0% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); } 2% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(60px ) translateY(2px ) rotate(2deg); } 4% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(120px ) translateY(2px ) rotate(2deg); } 8% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(180px ) translateY(2px ) rotate(2deg); } 12% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(210px ) translateY(0px ) rotate(-1deg); } 14% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(240px ) translateY(1px ) rotate(1deg); } 18% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(1deg) translateX(245px); } 36% { -webkit-animation-timing-function: linear; -webkit-transform: rotate(0deg) translateX(-2px); } 38% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-2px) translateY(2px ); } 40% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px); } 42% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(1deg) translateY(-2px ); } 43% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(-245px) rotate(-3deg); } 100% { -webkit-animation-timing-function: linear; -webkit-transform: translateX(0px); } }


@-moz-keyframes moz-mouvement-uniforme { 0% { -moz-transform: translateX(30px ) translateY(-2px ) rotate(-2deg); } 2% { -moz-transform: translateX(60px ) translateY(2px ) rotate(2deg); } 4% { -moz-transform: translateX(90px ) translateY(-2px ) rotate(-2deg); } 6% { -moz-transform: translateX(120px ) translateY(2px ) rotate(2deg); } 8% { -moz-transform: translateX(150px ) translateY(-2px ) rotate(-2deg); } 10% { -moz-transform: translateX(180px ) translateY(2px ) rotate(2deg); } 12% { -moz-transform: translateX(210px ) translateY(0px ) rotate(-1deg); } 14% { -moz-transform: translateX(240px ) translateY(1px ) rotate(1deg); } 18% { -moz-transform: rotate(0deg) translateX(240px) translateY(2px ); } 24% { -moz-transform: rotate(1deg) translateX(240px) translateY(-2px ); } 28% { -moz-transform: rotate(0deg) translateX(240px) translateY(3px ); } 32% { -moz-transform: rotate(0deg) translateX(240px) translateY(-1px ); } 34% { -moz-transform: rotate(1deg) translateX(245px); } 36% { -moz-transform: rotate(0deg) translateX(-2px); } 38% { -moz-transform: translateX(-2px) translateY(2px ); } 40% { -moz-transform: translateX(-245px); } 42% { -moz-transform: translateX(-245px) rotate(1deg) translateY(-2px ); } 43% { -moz-transform: translateX(-245px) rotate(-3deg); } 100% { -moz-transform: translateX(0px); } }



@-ms-keyframes ms-mouvement-uniforme {

   0% 		{ -ms-animation-timing-function: linear; -ms-transform: translateX(-500px); }
   100% 	{ -ms-animation-timing-function: linear; -ms-transform: translateX(0px); }

} @-o-keyframes o-mouvement-uniforme {

   0% 		{ -o-animation-timing-function: linear; -o-transform: translateX(-500px); }
   100% 	{ -o-animation-timing-function: linear; -o-transform: translateX(0px); }

}


.position { position: relative; top: -200px; left: -280px; float:left; }

.bouge { animation: mouvement-uniforme 60s ; -webkit-animation: webkit-mouvement-uniforme 20s ; -webkit-animation-iteration-count: infinite; -webkit-animation-fill-mode: forwards; -webkit-animation-duration: 15s; -webkit-animation-delay: 0s; -webkit-overflow-scrolling: auto!important;

-moz-animation: moz-mouvement-uniforme 20s; -moz-animation-iteration-count: infinite; -moz-animation-fill-mode: forwards; -moz-animation-duration: 15s; -moz-animation-delay: 0s;

-ms-animation: ms-mouvement-uniforme 10s ;

-o-animation: o-mouvement-uniforme 10s ; }



It was working fine before on firefox. it works on other browsers (opera, Edge,..) Do something changed? it's a long time that i didn't chek it so...

this is the page where a donkey should appear at the bottom of the page:

https://www.campingnoroc.com/en/our-campsite/


Thanks a lot for your help!!

Gelöst Archiviert 1 372

Used forgot about this site for reddit and now I cant acccess the site at all

Recently I used the forgot about this site for reddit, but when I try to click on a link from either my bookmarks or from a web search I keep on getting. [The page isn’t … (Lesen Sie mehr)

Recently I used the forgot about this site for reddit, but when I try to click on a link from either my bookmarks or from a web search I keep on getting. [The page isn’t redirecting properly Firefox has detected that the server is redirecting the request for this address in a way that will never complete. This problem can sometimes be caused by disabling or refusing to accept cookies.]

Not exactly sure what causes this or how to fix it.
Gelöst Archiviert 1 87

White circle in Firefox icon

I have an odd white circle with lines in it at about one o'clock on the Firefox icon in the dock on my MacBook. It just one day and I haven't been able to find any answer… (Lesen Sie mehr)

I have an odd white circle with lines in it at about one o'clock on the Firefox icon in the dock on my MacBook. It just one day and I haven't been able to find any answer in Mozilla/Firefox web pages. I don't know if it means something i wrong or what. Thanks for helping

Gelöst 1 130

its about tabs in firefox window

i attached a pic when i put my curser on the firefox icon in my task bar.... i changed my device while ago... previous device show windows not the all tabs... can i fix i… (Lesen Sie mehr)

i attached a pic when i put my curser on the firefox icon in my task bar.... i changed my device while ago... previous device show windows not the all tabs... can i fix it... i searched everywhr in settings but i couldnt find any thing related to it....

Gelöst Archiviert 1 108

Keep tab groups open?

I love the new tab groups in vertical tabs . . . but is there a way to keep them open upon quit so I don't have to reopen groups every time I launch FF?

Gelöst Archiviert 1 228

Bookmarks and History gone after crash

Had a crash earlier on my macbook that required a restart. Everything else is fine but I have lost all history and bookmark data on my firefox browser. I tried going to s… (Lesen Sie mehr)

Had a crash earlier on my macbook that required a restart. Everything else is fine but I have lost all history and bookmark data on my firefox browser. I tried going to see if i had the wrong profile and that was not the issue. I tired recovering the bookmarks in the manage boomarks option but there were no backup files.

I have some important bookmarks i need recovered. Any help would be highly appreciated.

Gelöst Archiviert 1 159

Firefox 128.0`

Since 128.0 was installed outlook.office.com/mail has stopped working. (Windows 11) My mail account has numerous shared groups. However these now fail to load with a mes… (Lesen Sie mehr)

Since 128.0 was installed outlook.office.com/mail has stopped working. (Windows 11)

My mail account has numerous shared groups. However these now fail to load with a messgae "Cannot load folders for "xxxxxxxxx" Decoding failed.

Additionally, while I can see new mails in the list (under focused and Other), the previews are all blank.

I do not get this error in Edge or Chrome in Windows.

Gelöst Archiviert 1 114

Syncing Firefox between my PCs and my Apple MAC

I have about 30 user/password accounts logged when I use my Firefox account on Windows PCs but here on my new Apple Mac tablet, I do NOT see/get any of those accounts. I… (Lesen Sie mehr)

I have about 30 user/password accounts logged when I use my Firefox account on Windows PCs but here on my new Apple Mac tablet, I do NOT see/get any of those accounts. Is there something I need to do to enable this to work?

Gelöst Archiviert 1 98