Fragen mit folgendem Schlagwort anzeigen: Alle Fragen anzeigen
  • Archiviert

Does Firefox need to download every PDF that is viewed on internet?

We have our downloads set to a network location, and ask to save in location. We have needed to apply the fix I found in a forum by going to about:config, browser.downloa… (Lesen Sie mehr)

We have our downloads set to a network location, and ask to save in location. We have needed to apply the fix I found in a forum by going to about:config, browser.download.improvements_to_download_panel and change value from true to false.

However, when even going to a PDF on the internet, it is automatically saving to the network location. Can this be changed?

Thank you! Nicole

Gefragt von nicole43 vor 1 Jahr

Letzte Antwort von James vor 1 Jahr

  • Archiviert

Tabs on bottom is Tabs below URL and Bookmarks multi line?

Besides old content from 2017 where is the most current listing of Tabs below the URL and below the Multi Bookmarks lines. I have the code inserted in the CSS code after… (Lesen Sie mehr)

Besides old content from 2017 where is the most current listing of Tabs below the URL and below the Multi Bookmarks lines. I have the code inserted in the CSS code after the code for the Multi bookmarks section. So, why is the Tabs showing up at the bottom of the screen. Can someone point me to the right version of tabs? I'm on 105.0.2 10-8-22

/* TABS: bottom - Firefox 65 and newer; should for now work with XUL @namespace */
/*  https://support.mozilla.org/en-US/questions/1274416  Github  10/8/22  */
@import url("tabs-on-bottom.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

tabs-on-bottom.css working code for Firefox 71 posted in this thread.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* TABS: below navbar - Firefox 65-89+,95+,106+,108+ */

/* #SXRR#/source/browser/themes/shared/tabs.inc.css */
/* #GHC#/Aris-t2/CustomCSSforFx/blob/master/classic/css/tabs/tabs_below_navigation_toolbar_fx89.css */

/* ROOT: VARS */
*|*:root {
  --tab-toolbar-navbar-overlap: 0px !important;

  --tab-min-height: 26px !important;
  --tab-min-width:  60px !important; /*minimum:50px*/
/*  --tab-overflow-pinned-tabs-width: 175px */

  --tabbar-adjust:  0px;
  --tabbar-caption: 0px;

  --tabbar-caption-padding:  90px;
  --tabbar-controls-padding: 90px;
}

/* TABS: below nav-bar */
#navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group: 10 !important;}
#TabsToolbar {-moz-box-ordinal-group: 1000 !important;}

/* TABS: POSITION */
#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0;
  width: 100vw !important;
}

/* Firefox 107 and older *//* #tabbrowser-tabs { width: 100vw !important; } */

/* navigator-toolbox: PADDING */
*|*:root:not([chromehidden*="toolbar"]) #navigator-toolbox {
  position: relative !important; /*89*/
  padding-bottom: calc(var(--tab-min-height) + 1px) !important; /*ADJUST*/
  background-color: var(--toolbar-bgcolor) !important;
}

/* TABS: menubar,titlebar hidden - 65-73 *//*
*|*:root[tabsintitlebar]:not([inFullscreen="true"]):not([sizemode="maximized"])
 #toolbar-menubar[autohide="true"] ~ #TabsToolbar{
  bottom: var(--tabbar-adjust) !important; /*ADJUST*/
}
*/

/* TABS: HEIGHT */
#tabbrowser-tabs,
#xtabbrowser-arrowscrollbox,
#xtabbrowser-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;
}

/* DRAG SPACE */
.titlebar-spacer[type="pre-tabs"],
.titlebar-spacer[type="post-tabs"] {
  width: 20px !important;
}

/* TABS: movingtab - vertical shifts */
#navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
  padding-bottom: unset !important;
}

#navigator-toolbox[movingtab] #tabbrowser-tabs {
  padding-bottom: unset !important;
  margin-bottom:  unset !important;
}

#navigator-toolbox[movingtab] > #nav-bar {
  margin-top: unset !important;
}

/* INDICATORS - POSITION */
*|*:root[privatebrowsingmode=temporary] .private-browsing-indicator {
  display: block !important;
  position: absolute !important;
  bottom: 0px !important;
  right: 0px !important;
  width: 14px !important;
  pointer-events: none !important;
}

/* INDICATORS - HIDE */
*|*:root:not([accessibilitymode])             .accessibility-indicator    {display: none !important}
*|*:root:not([privatebrowsingmode=temporary]) .private-browsing-indicator {display: none !important}

/* If you want to have the caption buttons visible on the Tab bar with the Menu bar and Title bar hidden then use this code as a start to replace the above posted "caption buttons - hide" rule. The caption button are positioned absolutely via a top property, so this is affected by the Bookmarks Toolbar (PersonalToolbar) being visible or hidden. Use either of the two "--personal-toolbar-height" settings that apply to the state (collapsed/hidden) of the Bookmarks Toolbar. */

/* caption buttons - PersonalToolbar hidden/visible */
*|*:root {
 --personal-toolbar-height: 0px !important;   /*PersonalToolbar hidden*/
 --personal-toolbar-height: 24px !important;  /*PersonalToolbar visible*/
 --caption-buttons-adjust: -12px !important;  /*caption buttons - vertical adjustment*/
}

*|*:root[tabsintitlebar]:not([inFullscreen="true"]) #toolbar-menubar[autohide="false"]
 ~ #TabsToolbar .titlebar-buttonbox-container {
  position: fixed !important;
  display: block !important;
  right: 0 !important;
  top: calc(var(--tab-min-height) + var(--personal-toolbar-height) + var(--caption-buttons-adjust));
  visibility: visible !important;
  height: var(--tab-min-height) !important;
}

/* caption buttons - HEIGHT and WIDTH */
.titlebar-buttonbox-container toolbarbutton {
  height: var(--tab-min-height) !important;
  margin: 0px -5px 0px -5px !important;
  padding: 0 !important;
}

/* caption buttons - PADDING - reserve space on Tab bar */
*|*:root[tabsintitlebar]:not([inFullscreen="true"])
 #toolbar-menubar[autohide="true"] ~
  #TabsToolbar {
   padding-right: 100px !important; /*adjust*/
}

Gefragt von Simson FireFox vor 2 Jahren

Letzte Antwort von cor-el vor 2 Jahren

  • Archiviert

Support

I'd like to ask a question. Is this the Mozilla money transfer address: support_moz ? Thank you! Alex Fisher, Mozilla, Windows10; Vienna , Austria. [email removed f… (Lesen Sie mehr)

I'd like to ask a question. Is this the Mozilla money transfer address: support_moz ? Thank you! Alex Fisher, Mozilla, Windows10; Vienna , Austria. [email removed from public]

Gefragt von Alexander vor 2 Jahren

Letzte Antwort von James vor 2 Jahren

  • Gelöst
  • Archiviert

downloding YouTube videos

Copied from Fifefox: Youtube switched to separate audio/video streaming technology for higher quality formats and no longer provides direct 720p (Since 24 September 201… (Lesen Sie mehr)

Copied from Fifefox:

Youtube switched to separate audio/video streaming technology for higher quality formats and no longer provides direct 720p (Since 24 September 2018)/1080p/mp3 streams. Converting these streams to downloadable formats for you needs powerful server infrastructure, therefore 1080p/mp3 downloading has been limited to PRO users. Read more at - https://videodroid.org/pro_upgrade.html. FREE users can download all formats in CACHE where some PRO users fetched the video/audio in past 24 hours, to test the feature you can try downloading popular videos.

If this is the case WHY should I use Firefox? There are other browsers!!!

Gefragt von Bernie Amler vor 2 Jahren

Beantwortet von Bernie Amler vor 2 Jahren

  • Archiviert

Access denied

I've checked all the proposed solutions to the topic "access denied" and particularly one which seemed similar to mine but the offered solution didn't work. the "access … (Lesen Sie mehr)

I've checked all the proposed solutions to the topic "access denied" and particularly one which seemed similar to mine but the offered solution didn't work.

the "access denied" is the reply when trying to access the EDF site while, with the same exact configuration, the access is fully accepted with Edge or IE, after the time needed to load and Edge or IE.

Gefragt von mjl.lavictoire vor 2 Jahren

Letzte Antwort von jscher2000 - Support Volunteer vor 2 Jahren

  • Archiviert

How to link firefox profiles

I recently switched to linux and I cannot find a way to link profiles from my windows install. In an older version I could make a symbolic link in ~/.mozilla/firefox/Prof… (Lesen Sie mehr)

I recently switched to linux and I cannot find a way to link profiles from my windows install. In an older version I could make a symbolic link in ~/.mozilla/firefox/Profiles to the profiles in /run/media but now profiles are stored in ~/.mozilla/firefox and it doesn't understand my symbolic links, how can I do this?

Gefragt von playerxyt vor 2 Jahren

Letzte Antwort von James vor 2 Jahren

  • Archiviert

Firefox needs to allow access to port 10080 in special cases

Firefox currently blocks port 10080 to protect against a presumed security threat. Linksys routers use port 10080 to allow users to log in to the guest network so Firefo… (Lesen Sie mehr)

Firefox currently blocks port 10080 to protect against a presumed security threat. Linksys routers use port 10080 to allow users to log in to the guest network so Firefox has rendered Guest Network logins to be unaccessable forcing router owner to allow "guests" to log in to the the primary lan and potentially cause issues with the very network they are trying to protect from outside issues. Firefox needs to provide a way for guests to log into the guest network within their software... particularly in the ios and android versions of the Firefox apps. Please provide a reasonable workaround so that I don't put my network at risk by allowing guests to log in to my primary network.

Gefragt von ddenby vor 2 Jahren

Letzte Antwort von jscher2000 - Support Volunteer vor 2 Jahren

  • Archiviert

Bookmarks lost

Hi, I had to recover my computer so I was re-downloading firefox and it looked as though I was missing some bookmarks so I clicked import -> restore and restored from … (Lesen Sie mehr)

Hi, I had to recover my computer so I was re-downloading firefox and it looked as though I was missing some bookmarks so I clicked import -> restore and restored from today, only now I only have 11 bookmarks left out of thousands and I can't figure out how or where to restore them. I don't have any backup info on this computer since I had to wipe it completely but now it seems as though whatever sync I used has been overwritten or disrupted. My bookmarks are really important to me and I really need them back, is there anything I can do to restore them?

Gefragt von atalanta335 vor 2 Jahren

Letzte Antwort von cor-el vor 2 Jahren

  • Archiviert

Why am I suddenly unable to access websites that I have used for years with no problem. What is going on. I cannot, for example, go to my Facebook page, and I've had trouble accessing my email. What the heck is going on?

I am suddenly unable to access websites, some of which I've viewed for years, like Facebook and my email, for Pete's sake. What is going on? I'm told there's a security… (Lesen Sie mehr)

I am suddenly unable to access websites, some of which I've viewed for years, like Facebook and my email, for Pete's sake. What is going on? I'm told there's a security risk and there's nothing I can do. What has changed. This is distressing in the extreme. I have put virus protection in place, and use a VPN, so I feel reasonably secure in my online work. Something has changed at Firefox, what the heck is it, and how do I correct it?

Gefragt von em7 vor 2 Jahren

Letzte Antwort von cor-el vor 2 Jahren

  • Archiviert

Mozilla support say I've used an incorrect password, had to reset it for the second time now.

I attempted to log in to these forums today only to be told I used an incorrect password. Twice this has happened now since I first created an account. I've had to reset … (Lesen Sie mehr)

I attempted to log in to these forums today only to be told I used an incorrect password. Twice this has happened now since I first created an account. I've had to reset it again. Why does this happen?

Gefragt von Xeys vor 2 Jahren

Letzte Antwort von Xeys vor 2 Jahren

  • Archiviert

How do I downgrade back to Firefox 85 without breaking my addons?

As the title says, accidentally updated this morning. Was running version 85 pretty handily. I just want to know how to go back. I don't care about security issues. I ac… (Lesen Sie mehr)

As the title says, accidentally updated this morning. Was running version 85 pretty handily. I just want to know how to go back.

I don't care about security issues. I actually tried to revert back myself using my current profile, but it broke all of my addons. Actually, it broke my ability to reinstall them too so even if I wanted them again, I couldn't download them.

Any help is appreciated. Personally, I would prefer to have a "disable until I care about it" button.

Gefragt von alcoholictimes vor 2 Jahren

Letzte Antwort von alcoholictimes vor 2 Jahren

  • Archiviert

Yahoo mail not working on Win 10 with FF 105.0.2 (64)

Accessing mail.yahoo.com as I have for many years, recently many functions do not work in Yahoo mail with Windows 10. Cannot select a message, cannot reply or forward, ca… (Lesen Sie mehr)

Accessing mail.yahoo.com as I have for many years, recently many functions do not work in Yahoo mail with Windows 10. Cannot select a message, cannot reply or forward, cannot go back to messages clicking the "back" arrow, cannot select the settings button. Yahoo mail works correctly in Chrome however. How to fix??

This should sound familiar.... It's copied from a 2 year old thread on the FF boards. I cleared the cache and flushed all my cookies. I removed my recently added addon (Malware Bytes). Problem still there.

Gefragt von canyontopher vor 2 Jahren

Letzte Antwort von canyontopher vor 2 Jahren

  • Archiviert

Videos won't play in Firefox, fine in other browsers

I seem to have that bug that was fixed a few updates ago where videos won't play. I have the latest version of Firefox. For example, YouTube will load and the page, prog… (Lesen Sie mehr)

I seem to have that bug that was fixed a few updates ago where videos won't play. I have the latest version of Firefox. For example, YouTube will load and the page, progress bar and even subtitles will show, but the video will just have the spinning circle. I have tried videos on other websites (Facebook, Tumblr) and they won't play either.

I've uninstalled/reinstalled Firefox, refreshed Firefox, disabled all add-ons, allowed autoplay of videos/audio but nothing works. The videos all work on Chrome and Edge.

Gefragt von ejayneh vor 2 Jahren

Letzte Antwort von info8565 vor 1 Jahr

  • Archiviert

Firefox Accounts secondary email already in use?

Hi, I tried to update my Firefox Accounts secondary email, but I got the error message This email was already confirmed by another user." That does not seem likely, as n… (Lesen Sie mehr)

Hi, I tried to update my Firefox Accounts secondary email, but I got the error message This email was already confirmed by another user." That does not seem likely, as no one else has access to my secondary email account. Obviously, there's something I don't grasp here. How do I fix this?

Gefragt von Bruce Girton vor 2 Jahren

Letzte Antwort von David vor 1 Jahr