Viser spørgsmål med mærkatet: Vis alle spørgsmål
  • Løst
  • Arkiveret

Why does Firefox show images I upload different than they are??

Every image I upload looks different in Firefox than the file opened in other programs and different than Google Chrome. It looks with less contrast for sure, and I think… (læs mere)

Every image I upload looks different in Firefox than the file opened in other programs and different than Google Chrome. It looks with less contrast for sure, and I think a little bit reddish. I noted it when I opened the file with Firefox and when I saw pictures in Facebook. My Firefox version is 47.0, my OS is Ubuntu 16.04 and I already tried in Firefox safe mode.

Stillet af Enrique_Agustini for 8 år siden

Besvaret af jscher2000 - Support Volunteer for 8 år siden

  • Løst
  • Arkiveret

Where is Firefox.exe located on WIndows 10?

I'd like to add Firefox to Adobe Dreamweaver for site design viewing. When searching Windows for Firefox.exe I don't see it in Program Files or Program Files (x86). Firef… (læs mere)

I'd like to add Firefox to Adobe Dreamweaver for site design viewing. When searching Windows for Firefox.exe I don't see it in Program Files or Program Files (x86). Firefox is installed and used daily. Can someone tell me where it's located in Windows 10?

Stillet af justin.desilva for 5 år siden

Besvaret af cor-el for 5 år siden

  • Løst
  • Arkiveret

Close Multiple Tabs sub-menu in context menu

In the new version of the Developer Edition the options "close tabs to the right" and "close other tabs" are in a sub-menu named "Close Multiple Tabs" inside the context … (læs mere)

In the new version of the Developer Edition the options "close tabs to the right" and "close other tabs" are in a sub-menu named "Close Multiple Tabs" inside the context menu. Is there's a way to change this so that they will appear directly in the main context menu? I use "close tabs to the right" often and I find this very annoying.

Stillet af gershonido for 4 år siden

Besvaret af gershonido for 4 år siden

  • Løst
  • Arkiveret

Firefox Nightly Video Playback on Fedora 33

I've installed Nightly the same way I have for years on my latest Fedora 33 install—i.e., download tarball, extract into /opt, set appropriate chmod and chown, make .desk… (læs mere)

I've installed Nightly the same way I have for years on my latest Fedora 33 install—i.e., download tarball, extract into /opt, set appropriate chmod and chown, make .desktop file, etc.—but certain videos certain videos on certain sites refuse to play. A Fedora discussion discussion led me to think it's how Fedora 33 may sandbox apps; I haven't yet had any hits on solutions in the Fedora groups, so I thought I'd ask here, since I can't be the only one with this issue.

Any help would be greatly appreciated!

Stillet af Bryan Moore for 4 år siden

Besvaret af cor-el for 4 år siden

  • Løst
  • Arkiveret

Right click menu keyboard shortcut

Hello, I upgraded my FireFox to the latest version 88.0 today, and noticed some changes on right click menu. In the old version, the keyboard shortcut key is a to copy a… (læs mere)

Hello,

I upgraded my FireFox to the latest version 88.0 today, and noticed some changes on right click menu. In the old version, the keyboard shortcut key is a to copy a link, but now it was changed to L. That is really inconvenient. As you know, when you right click a link using the mouse, your right hand is still holding the mouse, and not easy to press the letter L on the keyboard.

The old menu option is "Copy Link Locaton", but the new one is "Copy Link".

Is it possible to customize the keyboard shortcut of right click menu, please?

Thank you! Brian

Stillet af Brian_30@IRQ for 3 år siden

Besvaret af cor-el for 3 år siden

  • Løst
  • Arkiveret

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… (læs mere)

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.

Stillet af Blacklisted for 3 år siden

Besvaret af DB-1 for 3 år siden

  • Løst
  • Arkiveret

Import Extensions from Chrome

Anyone know if there is a way to import Google Chrome extensions into Firefox. I am moving over and want to make it easy. When I search all I get is bookmarks which I kno… (læs mere)

Anyone know if there is a way to import Google Chrome extensions into Firefox. I am moving over and want to make it easy. When I search all I get is bookmarks which I know how to do.

TIA!

Ron

Stillet af Ron for 3 år siden

Besvaret af TyDraniu for 3 år siden

  • Løst
  • Arkiveret

How to setup ESNI in Firefox 91 on Windows

After watching this video https://www.youtube.com/watch?v=mAfY_bNJTBI i went to https://www.cloudflare.com/ssl/encrypted-sni/ and did the test. Result is 3/4. (See screen… (læs mere)

After watching this video https://www.youtube.com/watch?v=mAfY_bNJTBI i went to https://www.cloudflare.com/ssl/encrypted-sni/ and did the test. Result is 3/4. (See screenshot below) Secure DNS, check DNSSEC, check TLS 1.3 check Enrypted SNI, fail In Firefox i tried doing exactly what the person did in the video but i dont have the settings he is showing in about:config Why is that? (Below you can see the screenshot, those settings are missing from about:config)

So my question reamins simple, how can i enable Enrypted SNI in Firefox?

Stillet af Firefox_Beginner for 3 år siden

Besvaret af cor-el for 3 år siden

  • Løst
  • Arkiveret

Minimize, maximize and close options disappear when in full screen.

When I am not in full screen the minimize, maximize and close options are there. They disappear when I go into full screen and I am forced to get out of full screen to mi… (læs mere)

When I am not in full screen the minimize, maximize and close options are there. They disappear when I go into full screen and I am forced to get out of full screen to minimize or close firefox. This only started happening recently. Does anybody know how to make these options appear again while in full screen?

Stillet af nilxin0 for 3 år siden

Besvaret af cor-el for 3 år siden

  • Løst
  • Arkiveret

Firefox crashes on start-up

I booted into safe mode of Firefox and disabled all the extensions. I couldn't even boot the app, but now I can boot without being in safe mode, but if I close a tab, it … (læs mere)

I booted into safe mode of Firefox and disabled all the extensions. I couldn't even boot the app, but now I can boot without being in safe mode, but if I close a tab, it crashes immediately. Or if I quit the app - it crashes.

AdapterVendorID: 0x106b Add-ons: reset-search-defaults%40mozilla.com:2.1.0,webcompat%40mozilla.org:28.0.1buildid20211210.021657,doh-rollout%40mozilla.org:2.0.0,formautofill%40mozilla.org:1.0.1,pictureinpicture%40mozilla.org:1.0.0,proxy-failover%40mozilla.com:1.0.2,screenshots%40mozilla.org:39.0.1,addons-search-detection%40mozilla.com:2.0.0,google%40search.mozilla.org:1.1,amazondotcom%40search.mozilla.org:1.3,wikipedia%40search.mozilla.org:1.1,bing%40search.mozilla.org:1.3,ddg%40search.mozilla.org:1.1,ebay%40search.mozilla.org:1.3,firefox-compact-dark%40mozilla.org:1.2 AvailablePhysicalMemory: 172670976 AvailableSwapMemory: 1045692416 BuildID: 20211218203254 ContentSandboxCapable: 1 ContentSandboxLevel: 3 CrashTime: 1641339399 DOMFissionEnabled: 1 DOMIPCEnabled: 1 ExperimentalFeatures: fission.autostart,media.videocontrols.picture-in-picture.allow-multiple InstallTime: 1640733686 MacAvailableMemorySysctl: 57 MacMemoryPressure: Normal MacMemoryPressureCriticalTime: Unset MacMemoryPressureNormalTime: 1641339386 MacMemoryPressureSysctl: 1 MacMemoryPressureWarningTime: Unset Notes: FP(D00-L1100-W00000000-T000) WR? WR+ GL Context? GL Context+ ProductID: {ec8030f7-c20a-464f-9b0e-13a3a9e97384} ProductName: Firefox PurgeablePhysicalMemory: 104349696 ReleaseChannel: release SafeMode: 0 SecondsSinceLastCrash: 16 StartupCrash: 0 StartupTime: 1641339386 TelemetryEnvironment: {"build":{"applicationId":"{ec8030f7-c20a-464f-9b0e-13a3a9e97384}","applicationName":"Firefox","architecture":"aarch64","buildId":"20211218203254","version":"95.0.2","vendor":"Mozilla","displayVersion":"95.0.2","platformVersion":"95.0.2","xpcomAbi":"aarch64-gcc3","updaterAvailable":true},"partner":{"distributionId":null,"distributionVersion":null,"partnerId":null,"distributor":null,"distributorChannel":null,"partnerNames":[]},"system":{"memoryMB":8192,"virtualMaxMB":null,"cpu":{"extensions":["hasNEON"]},"os":{"name":"Darwin","version":"21.1.0","locale":"en-US"},"hdd":{"profile":{"model":null,"revision":null,"type":null},"binary":{"model":null,"revision":null,"type":null},"system":{"model":null,"revision":null,"type":null}},"gfx":{"D2DEnabled":null,"DWriteEnabled":null,"ContentBackend":"Skia","Headless":false,"EmbeddedInFirefoxReality":null,"adapters":[{"description":null,"vendorID":"0x106b","deviceID":null,"subsysID":null,"RAM":0,"driver":null,"driverVendor":null,"driverVersion":null,"driverDate":null,"GPUActive":true}],"monitors":[{"screenWidth":1440,"screenHeight":900,"scale":2}],"features":{"compositor":"webrender_software","hwCompositing":{"status":"disabled:FEATURE_FAILURE_COMP_PREF"},"gpuProcess":{"status":"unused"},"wrQualified":{"status":"available"},"webrender":{"status":"unavailable-no-hw-compositing"},"wrCompositor":{"status":"available"},"wrSoftware":{"status":"available"},"openglCompositing":{"status":"unavailable:FEATURE_FAILURE_OPENGL_NEED_HWCOMP"},"omtp":{"status":"unused"}}},"appleModelId":"MacBookAir10,1","hasWinPackageId":null},"settings":{"blocklistEnabled":true,"e10sEnabled":true,"e10sMultiProcesses":8,"fissionEnabled":true,"telemetryEnabled":false,"locale":"en-US","intl":{"requestedLocales":["en-US"],"availableLocales":["en-US"],"appLocales":["en-US"],"systemLocales":["en-US"],"regionalPrefsLocales":["en-US"],"acceptLanguages":["en-US","en"]},"update":{"channel":"release","enabled":true,"autoDownload":true,"background":true},"userPrefs":{"browser.search.region":"US","browser.search.widget.inNavBar":false,"browser.startup.homepage":"<user-set>","browser.startup.page":3,"browser.urlbar.quicksuggest.dataCollection.enabled":false,"browser.urlbar.suggest.quicksuggest.nonsponsored":true,"browser.urlbar.suggest.quicksuggest.sponsored":true,"layers.acceleration.disabled":true,"privacy.donottrackheader.enabled":true,"widget.content.allow-gtk-dark-theme":false,"widget.content.gtk-high-contrast.enabled":true},"sandbox":{"effectiveContentProcessLevel":3,"contentWin32kLockdownState":3},"addonCompatibilityCheckEnabled":true,"isDefaultBrowser":true,"defaultSearchEngine":"ddg-addon","defaultSearchEngineData":{"loadPath":"[other]addEngineWithDetails:ddg@search.mozilla.org","name":"DuckDuckGo","origin":"default","submissionURL":"https://duckduckgo.com/?t=ffsb&q="}},"profile":{"creationDate":18989,"resetDate":18996,"firstUseDate":18989},"addons":{"activeAddons":{"doh-rollout@mozilla.org":{"version":"2.0.0","scope":1,"type":"extension","updateDay":18979,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"This used to be a Mozilla add-on that supported the roll-out of DoH, but now only exists as a stub t","name":"DoH Roll-Out","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":18979},"formautofill@mozilla.org":{"version":"1.0.1","scope":1,"type":"extension","updateDay":18979,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":null,"name":"Form Autofill","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":18979},"pictureinpicture@mozilla.org":{"version":"1.0.0","scope":1,"type":"extension","updateDay":18979,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Fixes for web compatibility with Picture-in-Picture","name":"Picture-In-Picture","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":18979},"proxy-failover@mozilla.com":{"version":"1.0.2","scope":1,"type":"extension","updateDay":18979,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Direct Failover for system requests.","name":"Proxy Failover","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":18979},"screenshots@mozilla.org":{"version":"39.0.1","scope":1,"type":"extension","updateDay":18979,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Take clips and screenshots from the Web and save them temporarily or permanently.","name":"Firefox Screenshots","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":18979},"reset-search-defaults@mozilla.com":{"version":"2.1.0","scope":1,"type":"extension","updateDay":18996,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Ask the user if they would like to use a specified search engine as the default.","name":"Reset Search Defaults","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":18996,"signedState":3},"webcompat@mozilla.org":{"version":"28.0.1buildid20211210.021657","scope":1,"type":"extension","updateDay":18996,"isSystem":true,"isWebExtension":true,"multiprocessCompatible":true,"blocklisted":false,"description":"Urgent post-release fixes for web compatibility.","name":"Web Compatibility Interventions","userDisabled":false,"appDisabled":false,"foreignInstall":false,"hasBinaryComponents":false,"installDay":18996,"signedState":3}},"theme":{"id":"firefox-compact-dark@mozilla.org","blocklisted":false,"description":"A theme with a dark color scheme.","name":"Dark","userDisabled":false,"appDisabled":false,"version":"1.2","scope":4,"foreignInstall":false,"hasBinaryComponents":false,"installDay":18996,"updateDay":18996},"activeGMPlugins":{"dummy-gmp":{"version":"0.1","userDisabled":false,"applyBackgroundUpdates":1}}},"experiments":{"bug-1690367-rollout-moving-webrtc-networking-functionality-into-i-release-87-100":{"branch":"active","type":"normandy-prefrollout","enrollmentId":"deee5207-5240-47f1-a661-69bdfdc07174"},"bug-1732206-rollout-fission-release-rollout-release-94-95":{"branch":"active","type":"normandy-prefrollout","enrollmentId":"bd1903ce-823e-4796-8f8c-7f2076775967"},"bug-1727384-pref-impact-study-for-total-cookie-protection-tcp-release-91-95":{"branch":"noop","type":"normandy-exp","enrollmentId":"909962d8-75ce-4b05-8ef5-98efc43496d3"}}} ThreadIdNameMapping: 6:"IPC I/O Parent",7:"Timer",10:"Socket Thread",11:"Permission",12:"JS Watchdog",20:"TaskController #5",18:"TaskController #3",19:"TaskController #4",17:"TaskController #2",21:"TaskController #6",16:"TaskController #1",15:"TaskController #0",22:"TaskController #7",23:"Cache2 I/O",24:"Cookie",26:"Worker Launcher",28:"WRWorker#0",46:"ImageIO",38:"WRWorkerLP#2",32:"WRWorker#4",34:"WRWorker#6",27:"Renderer",31:"WRWorker#3",36:"WRWorkerLP#0",30:"WRWorker#2",44:"Compositor",40:"WRWorkerLP#4",33:"WRWorker#5",37:"WRWorkerLP#1",39:"WRWorkerLP#3",42:"WRWorkerLP#6",35:"WRWorker#7",29:"WRWorker#1",47:"IPDL Background",41:"WRWorkerLP#5",43:"WRWorkerLP#7",51:"QuotaManager IO",52:"DOM Worker",50:"IndexedDB #1",52:"TRR Background",53:"IndexedDB #2",68:"StyleThread#4",69:"StyleThread#5",67:"StyleThread#3",65:"StyleThread#1",64:"StyleThread#0",66:"StyleThread#2",62:"ImageBridgeChld",63:"WRSceneBuilder#1",64:"WRSceneBuilderLP#1",65:"WRRenderBackend#1",69:"GMPThread",70:"ProcessHangMon",70:"mozStorage #1",71:"mozStorage #2",72:"BackgroundThreadPool #1",74:"DNS Resolver #1",75:"DNS Resolver #2",76:"HTML5 Parser",77:"mozStorage #3",78:"IndexedDB #3",79:"IndexedDB #4",80:"SSL Cert #1",87:"SSL Cert #2",83:"IndexedDB #5",84:"DOM Worker",85:"DOM Worker",86:"BgIOThreadPool #2",89:"StreamTrans #58",93:"StreamTrans #62",87:"URL Classifier",88:"ExtensionProtocolHandler",91:"IndexedDB #6",92:"mozStorage #4",94:"StreamTrans #65",94:"DOM Worker",95:"RemoteLzyStream",97:"SSL Cert #3",99:"SSL Cert #4",98:"StreamTrans #70",115:"StreamTrans #87", Throttleable: 1 TotalPhysicalMemory: 8589934592 URL: about:preferences UptimeTS: 13.166666666666666 Vendor: Mozilla Version: 95.0.2 useragent_locale: en-US

This report also contains technical information about the state of the application when it crashed.

Stillet af bill.maas for 3 år siden

Besvaret af bill.maas for 3 år siden

  • Løst
  • Arkiveret

Firefox icon change no longer works

I use to be able to change firefox icons by adding these files in Firefox under the browser directory chrome/icons/default/BrowserPreferences.ico chrome/icons/default/Cu… (læs mere)

I use to be able to change firefox icons by adding these files in Firefox under the browser directory

chrome/icons/default/BrowserPreferences.ico chrome/icons/default/CustomizeToolbarWindow.ico chrome/icons/default/default.ico chrome/icons/default/downloadManager.ico chrome/icons/default/main-window.ico chrome/icons/default/openLocation.ico chrome/icons/default/places.ico chrome/icons/default/printPageSetupDialog.ico chrome/icons/default/TabMIxPreferences.ico chrome/icons/default/unknownContentType.ico chrome/icons/default/viewSource.ico chrome/icons/default/Wizard.ico

It worked in version 56 but now in version 97 and this no longer works?

Stillet af ikhalil for 3 år siden

Besvaret af TyDraniu for 3 år siden

  • Løst
  • Arkiveret

Spell checker

How to make firefox enable to recognize the language that are typed? In microsoft edge we can just click "all language", but in firefox no similar option to it.

Stillet af MRA for 3 år siden

Besvaret af James for 2 år siden

  • Løst
  • Arkiveret

Remove Shortcuts when hiding menu items

I'm hiding menu items using userChrome.css with option “toolkit.legacyUserProfileCustomizations.stylesheets” set to “true”. So I am hiding some menu items like for examp… (læs mere)

I'm hiding menu items using userChrome.css with option “toolkit.legacyUserProfileCustomizations.stylesheets” set to “true”.

So I am hiding some menu items like for example

  1. menu_find { display: none !important }

however though the menu item is gone how do I get rid of the ctrl-F menu shortcut...

I have many such menu items to remove so I need a generic solution to override the short-cut icons associated with the menu items I want to remove

Stillet af ikhalil for 3 år siden

Besvaret af ikhalil for 3 år siden

  • Løst
  • Arkiveret

How to allow web page to override a keyboard shortcut

How to allow web page to override a keyboard shortcut. Currently firefox picks up the shortcut instead of the webpage... For example I have an webpage that detects ctrl-… (læs mere)

How to allow web page to override a keyboard shortcut. Currently firefox picks up the shortcut instead of the webpage...

For example I have an webpage that detects ctrl-shift-h which worked fine in version 56 but now in version 96 it brings up a "Show All History" dialog

I an doing many such things so I looking for a generic way to override firefox keyboard shortcuts

Stillet af ikhalil for 3 år siden

Besvaret af ikhalil for 3 år siden

  • Løst
  • Arkiveret

Browser stopped warning that page has changed 97.0.1 (64) (now 99.0.1)

My work consists mainly of capturing accounting data online. It is important that the browser warns me if I try to close or navigate away from a page if the data entered … (læs mere)

My work consists mainly of capturing accounting data online. It is important that the browser warns me if I try to close or navigate away from a page if the data entered has not been saved or updated, but I no longer get these warnings.

Please help.

Stillet af Joshua Jacobs for 3 år siden

Besvaret af jscher2000 - Support Volunteer for 2 år siden

  • Løst
  • Arkiveret

Facebook scrolls to bottom of page when I type a reply to a comment or use Shift or Backspace keys

I've tried going in safe mode, turning of my Facebook container. Deleting cache. Signing out of Facebook. Also adjusting the backspace key in my Config. Having no problem… (læs mere)

I've tried going in safe mode, turning of my Facebook container. Deleting cache. Signing out of Facebook. Also adjusting the backspace key in my Config. Having no problems on my Android phone or when using Opera. It's on on Firefox and on Facebook.

FACEBOOK screen suddenly moves to the bottom of the screen when I am typing a comment. Whenever I hit SHIFT+alpha_letter at the beginning of a line OR simply hit the backspace key, the screen suddenly shifts to the very bottom of the page again even if I have tried to scroll the page back up to the middle of the screen manually. This shifts the entry area where I'm typing down and sometimes off of the visible screen entirely. Just hitting the backspace to correct a typo causes the screen to scroll on its own. I have to scroll back down to the entry box and if I make another typo, it happens again. 

Please help. Been going on for over two weeks. I was hoping the new Firefox update yesterday would help. Nope. Still happening.

Stillet af fu22 for 3 år siden

Besvaret af jeddolnick for 2 år siden

  • Løst
  • Arkiveret

Big yellow dotted border on history page.

I don't know if it is a wrong manipulation or an update feature, but since today when i select a link in the history library, it is now highlighted with big yellow dotted… (læs mere)

I don't know if it is a wrong manipulation or an update feature, but since today when i select a link in the history library, it is now highlighted with big yellow dotted borders instead of the usual subtle black/white single pixel sized dots. How to revert back to the small borders?

Stillet af thor94 for 3 år siden

Besvaret af cor-el for 3 år siden

  • Løst
  • Arkiveret

Page not loading for 10-20 seconds, then it does after refresh

Ever since installing firefox on a new pc, I've had the problem where I would click a link or enter a url, and sometimes (not always, about 20% of the time), the page wil… (læs mere)

Ever since installing firefox on a new pc, I've had the problem where I would click a link or enter a url, and sometimes (not always, about 20% of the time), the page will not load (there is a loading symbol but no page shows up), then it stops loading after about 10-20 seconds and there is no page (when I enter a url from a new tab, there is just a blank tab, when I click a link on a webpage, I just remain on the webpage), but when I re-enter the url or re-click the link, it does work. So happens for all links of the website I'm trying to visit.

To summarize: I click a link, and sometimes it loads for 10-20s and then just stops, and when I click again, it works.

Any help is appreciated!

Stillet af niekrochip for 3 år siden

Besvaret af jonzn4SUSE for 3 år siden