Prikaz označenih pitanja: Prikaži sva pitanja

Firefox browser setting change on it own.

When I download Firefox initially I am able to set the home page the way I want with the shortcuts I use. After a few weeks the shortcuts disappear and the only way to ge… (pročitajte više)

When I download Firefox initially I am able to set the home page the way I want with the shortcuts I use. After a few weeks the shortcuts disappear and the only way to get them back is to delete Firefox and reinstall. I am also not able to save bookmarks anymore. This has the same resolution methods.

This has happened 3 times already.

Asked by stevenrodger prije 1 sat

Firefox Sync not restoring tabs on new device

I recently switched to a new laptop and signed in to Firefox Sync. Bookmarks and passwords restored fine, but tabs didn’t reopen. I had important pages saved from sites l… (pročitajte više)

I recently switched to a new laptop and signed in to Firefox Sync. Bookmarks and passwords restored fine, but tabs didn’t reopen. I had important pages saved from sites like medithrivehub.com for product research, and I really need them back.

Is there a way to recover synced tabs that didn’t show up automatically? Any help would be appreciated.

Asked by Oliver prije 1 sat

Options boxes not working on websites

I am using Firefox on Win 11, recently I have noticed a weird problem, on Ebay for example when a listing uses a drop down selection box for sizes, amounts etc none of th… (pročitajte više)

I am using Firefox on Win 11, recently I have noticed a weird problem, on Ebay for example when a listing uses a drop down selection box for sizes, amounts etc none of them work for me, I click on the box and down arrow but nothing. I also went on to the Vodafone site to top up my phone but I was unable to do it as the drop down box to select the amount was empty. I have tried clearing my cache and even reloading Firefox but nothing seems to work, I just tried using Edge as well but its the same, suggesting that its maybe something to do with my settings?

Asked by Cantthink01 prije 2 sati

Firefox desktop version

PLEASE help! I am desperatly trying to stop firefox from opening a tab every time after I visited my individualized start page and clicking on it. It is my yahoo and ever… (pročitajte više)

PLEASE help! I am desperatly trying to stop firefox from opening a tab every time after I visited my individualized start page and clicking on it. It is my yahoo and every time I click to check my mails or read an article your browser opens a tab that shows my account settings. It is terribly annoying. Thank you! Ariane

Asked by Ariane prije 3 sati

  • Riješeno

Mozilla Firefox slow on Windows 11 24h2

Hello! After a clean install of Windows 11 24h2 Pro, Mozilla Firefox is unusable. It takes about 2 minutes to load a page which is abnormal. I remember I had the same iss… (pročitajte više)

Hello! After a clean install of Windows 11 24h2 Pro, Mozilla Firefox is unusable. It takes about 2 minutes to load a page which is abnormal. I remember I had the same issue when I first installed Windows 11 23H2 Pro and that was resolved somehow but it was 2 or 3 years ago and I've no idea what the solution was back then. I've tried some basic stuff including Test suggestion which of course didn't resolve anything as almost all of them are referring to cleaning cache, reinstall Firefox etc and it literally has nothing to do with my situation. Any solutions?

Asked by anwylyds prije 4 sati

Answered by anwylyds prije 3 sati

استرجاع بياناتي

ارجو من جنابكم التفظل وارجاع معلوملتي الكامله في حسابmozilla لاني منذ مده طويله لم استطع الوصول لبياناتي علما اني طلبت متكم المساعده من قيل ولكن دون جواب منكم

Asked by salah Ali prije 4 sati

.pdf downloading failed after updating the browser.

I have use the following type of code in the google appscript for downloading the html table as .pdf format but after update the Firefox browser the file unable to downlo… (pročitajte više)

I have use the following type of code in the google appscript for downloading the html table as .pdf format but after update the Firefox browser the file unable to download but everything runs properly and the success message is appearing but the file is not downloading. Before, update the browser, the file was downloaded properly, please tell me how to resolve the problem. It's an URGENT. Please take necessary action at an earlier.

function exportToPDF() {

   try {
       const table = document.getElementById("dataTable");
       if (!table || table.classList.contains('hidden')) {
           showAlert("Nothing found to generate PDF!");
           return;
       }
       const originalScrollPosition = {
           body: document.body.scrollTop || document.documentElement.scrollTop
       };
       document.body.scrollTop = 0;
       document.documentElement.scrollTop = 0;
       const tableContainer = document.querySelector(".table-container");
       const cloneContainer = tableContainer.cloneNode(true);
       cloneContainer.style.overflow = "visible";
       cloneContainer.style.maxHeight = "unset";
       cloneContainer.classList.add("no-scrollbar");


       const clone = cloneContainer.querySelector("table");
       clone.style.fontSize = "12px";
       clone.style.borderCollapse = "collapse";
       clone.style.width = "100%";
       clone.querySelectorAll('th').forEach(th => {
           th.style.fontSize = "10.5px";
           th.style.padding = "1px";
           th.style.border = "1px solid black";
       });
       clone.querySelectorAll('td').forEach(td => {
           td.style.fontSize = "10.5px";
           td.style.padding = "1px";
           td.style.border = "1px solid black";
       });


       const now = new Date();
       const dateTime = now.toLocaleString("en-GB", {
           day: "2-digit", month: "2-digit", year: "numeric",
           hour: "2-digit", minute: "2-digit", second: "2-digit",
           hour12: true
       });
       const selectedYearValue = document.getElementById('yearSelect').value;


       const wrapper = document.createElement("div");
       wrapper.style.fontSize = "16px";
       wrapper.style.fontFamily = "Arial, sans-serif";
       wrapper.style.width = "100%";


       const header = document.createElement("div");
       header.style.textAlign = "center";
       header.innerHTML = `
Financial Year wise Report on BEUP || 17th Assembly (2021-2026)
Financial Year: ${selectedYearValue}
               Report as on: ${dateTime}
       `;
       wrapper.appendChild(header);
       wrapper.appendChild(cloneContainer);
       cloneContainer.style.marginTop = "2px";
       cloneContainer.style.paddingTop = "0px";


       const fileName = `MLA_wise_&_F-Y_wise_Report_as_on_${formatDateTimeForFilename()}.pdf`;


       document.body.style.overflow = 'hidden';
       const opt = {
           margin: [5, 5, 5, 5],
           filename: fileName,
           image: { type: 'jpeg', quality: 1 },
           html2canvas: {
               scale: 2,
               useCORS: true,
               scrollY: 0,
               windowHeight: document.documentElement.scrollHeight
           },
           jsPDF: {
               unit: 'mm',
               format: 'a4',
               orientation: 'landscape'
           }
       };
       html2pdf().set(opt).from(wrapper).save().then(() => {
           
           document.body.scrollTop = originalScrollPosition.body;
           document.documentElement.scrollTop = originalScrollPosition.body;
           document.body.style.overflow = ;

           showAlert("PDF file downloaded successfully!", 'success');
       });
   } catch (e) {
       console.error("Error generating PDF:", e);
       document.body.style.overflow = ;

       showAlert("PDF generation failed. Check console for details.", 'error');
   }

}

Asked by BEUP NADIA prije 4 sati

About:config

I used once entering about about:config to enable DOT setting in my android phone but have not yet completed network.trr.uri.Later on, tried to do it but cannot access us… (pročitajte više)

I used once entering about about:config to enable DOT setting in my android phone but have not yet completed network.trr.uri.Later on, tried to do it but cannot access using about:config any more. Please advise, as your recent online instruction allow windows laptop to set automatically using security and privacy to go to Https setting to enable it. Not so, for android devices, even using chrome://geckoview/content/config.xhtmi, it does not go directly to enable Https setting. Any recent updates to do it. I understand that the restrictions are good to prevent most users and not developers to adjust the defaults. But why not making simpler only for most users to tweak or enable DOT setting, just like brave. Thank you for your understanding and attention. Regards Francis

Asked by Fhcando prije 9 sati

Last reply by TyDraniu prije 4 sati

Firefox Red Address Bar

I believe this problem is caused by a false crash recovery loop, every time I open firefox it'll close again and then give me an annoying red striped address bar. I'm sur… (pročitajte više)

I believe this problem is caused by a false crash recovery loop, every time I open firefox it'll close again and then give me an annoying red striped address bar. I'm sure its not my extensions because I only have Ublock Origin installed.

Asked by Isaiah Diaz prije 21 sat

Last reply by Ed prije 5 sati

firefox stopped launching after working for some time

I downloaded firefox and it worked for about a month. Now when I try to launch it, the screen flashes momentarily as though it were about to pop up, but then it does not … (pročitajte više)

I downloaded firefox and it worked for about a month. Now when I try to launch it, the screen flashes momentarily as though it were about to pop up, but then it does not actually open a browser window. I have uninstalled and reinstalled firefox more than once, I've tried a simple restart of the computer, and tried multiple different update methods (updated windows). Any suggestions?

Asked by Robey NeJame prije 1 sedmicu

Last reply by Ed prije 5 sati