Kukhonjiswa imibuzo ethegiwe: Veza yonke imibuzo
  • Kusonjululiwe
  • Okugcinwe kunqolobane

Using mouse wheel scrolling to zoom out of images causes them to zoom too far out

Like the title says, whenever I try to zoom out of an image to make it smaller, it causes the image to zoom out very far in just one scroll "tick". To be more specific, … (funda kabanzi)

Like the title says, whenever I try to zoom out of an image to make it smaller, it causes the image to zoom out very far in just one scroll "tick".

To be more specific, I'm talking about just scrolling (not using ctrl+scroll). An example would be with Piskel.com where you simply use the scroll wheel to zoom the canvas.

Zooming in is perfectly fine, but when I try to zoom out it seems to zoom out by 3 or 4 ticks. On some websites, such as Piskel, it even it zooms the image out all the way making it very small and impossible to see (It does it with just one scroll tick).

My question is if there is a way to change or fix the zooming, making things zoom out more incrementally. (I recently switched from Chrome which didn't have this problem)

Asked by h0td0gg3r 2 iminyaka edlule

Answered by jonzn4SUSE 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Wrong buttons (apparently gamepad?) for video control in video players

See images. The buttons on video players don't look like play, pause, gear, etc. They look like gamepad buttons. But a gamepad is not connected to my PC and I haven't con… (funda kabanzi)

See images. The buttons on video players don't look like play, pause, gear, etc. They look like gamepad buttons. But a gamepad is not connected to my PC and I haven't connected one in months. I have tested it with videos on invidious.snopyta.org and tagesschau.de.

Asked by user_15135680201 2 iminyaka edlule

Answered by user_15135680201 2 iminyaka edlule

  • Okugcinwe kunqolobane

Can not log into Last Pass extension with newest Firefox update

I use Last Pass for passwords & it's worked in the past on Firefox. After updating Firefox, the Last Pass extension in by toolbar is black - in the past I would click… (funda kabanzi)

I use Last Pass for passwords & it's worked in the past on Firefox. After updating Firefox, the Last Pass extension in by toolbar is black - in the past I would click that, open the Last Pass page to sign in, then the icon turns red and functions. Now when I click the icon a frozen page comes up that never loads. I can sign in to the Last Pass webpage, but that doesn't turn on the extension.

Any advice appreciated - thanks!

Asked by washburnkristen 2 iminyaka edlule

Last reply by rob.nash1984 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Honey App not working with new FireFox update

My Honey shopping app is no longer working with the newest FoxFire update. I've uninstalled/reinstalled Honey THREE times and still not working. Have gone into Firefox … (funda kabanzi)

My Honey shopping app is no longer working with the newest FoxFire update. I've uninstalled/reinstalled Honey THREE times and still not working. Have gone into Firefox App Manager and Honey shows green, meaning it has permission to run. HELP!

Asked by momaearth 2 iminyaka edlule

Answered by momaearth 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

How can I block a website from spamming the browser's web dev console?

I've noticed that some websites will endlessly spam the console (in developer tools) with rubbish, and I would like to be able to block that from happening. I'm ignorant … (funda kabanzi)

I've noticed that some websites will endlessly spam the console (in developer tools) with rubbish, and I would like to be able to block that from happening. I'm ignorant about this sort of stuff in general, and it confuses me how a website can even access my browser's console to begin with.

The latest example I came across which caused me to finally ask about it, was some strange JavaScript spam with some kind of < div > (had to edit this with spaces to show it in the post) structure containing over a thousand characters. This entire thing gets spammed in the console at a rate of a few every second. I recorded a short gif of it, which imgur seems to have converted into a video: https://i.imgur.com/dosMZjo.mp4

Asked by Flannery_Moore 2 iminyaka edlule

Answered by jscher2000 - Support Volunteer 2 iminyaka edlule

  • Okugcinwe kunqolobane

HOW to stop searches from the URL box which is not long enough to show complete results. and mouse over does not work either. I want to search from the middle of the home page. Security issue? I will take the risk.

HOW do I stop searches from happening in the URL box? This is DRIVING ME CRAZY. The URL box is not long enough to show complete results and mouse over does not work eithe… (funda kabanzi)

HOW do I stop searches from happening in the URL box? This is DRIVING ME CRAZY. The URL box is not long enough to show complete results and mouse over does not work either, so I PREFER to TAKE THE RISK and search from the search box on the middle of the home page. WHY has FF taken this control away from us? If it is a security issue, I would take the risk as the current problem makes the search suggestions limited in value since you cant see the complete suggestion UNLESS you go to the site

Asked by BertD FireFox 2 iminyaka edlule

Last reply by cor-el 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

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… (funda kabanzi)

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.

Asked by Blacklisted 3 iminyaka edlule

Answered by DB-1 3 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

watch video "in" firefox browser

I'm trying to watch videos in Firefox. Youtube works but Xvideos does not. Firefox pops up a window asking me: >> "Opening xvideos"."com ###.mp4". >> wh… (funda kabanzi)

I'm trying to watch videos in Firefox. Youtube works but Xvideos does not. Firefox pops up a window asking me:

>> "Opening xvideos"."com ###.mp4". >> which is: MP4 Video (16.4MB) >> from https://cdn77-vid.xvideos-cdn"."com >> >> What should Firefox do with this file?

My only choice is: Open with Windows Media Player x86 (default)

suggestions?

I'm running Windows 7 Firefox 76.0.1

Thanks!!!!

Asked by G_Eak 4 iminyaka edlule

Answered by cor-el 4 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

How do I disable the mute button on tabs? Setting "browser.tabs.showAudioPlayingIcon" to false does nothing

The mute icon only shows on hover and takes up 50% of the tab size so I'm constantly accidentally muting tabs without realizing it and silencing video calls and the like.… (funda kabanzi)

The mute icon only shows on hover and takes up 50% of the tab size so I'm constantly accidentally muting tabs without realizing it and silencing video calls and the like. The top Google result for this issue -- rightfully yelled in all caps because this is an absolutely horrid UX -- says to set browser.tabs.showAudioPlayingIcon to false, but that does absolutely nothing in FF 100.0

Asked by exasperated_plum 2 iminyaka edlule

Answered by user104147805413306348376805769878442569366 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

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… (funda kabanzi)

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?

Asked by ikhalil 2 iminyaka edlule

Answered by TyDraniu 2 iminyaka edlule

  • Okugcinwe kunqolobane

why is the cast icon not showing on some websites ?

unable to see cast option on few websites like most websites. I tried to install the fx_cast option where I can see the cast icon now, but when I play youtube videos and … (funda kabanzi)

unable to see cast option on few websites like most websites. I tried to install the fx_cast option where I can see the cast icon now, but when I play youtube videos and click on cast button (fx_cast), its not detecting my google chromecast. Google chromecast is detected in edge and chrome browsers, but why is my TV not detected in firefox. Like I cannot see the cast icon on many websites where I see the cast icon on edge and chrome browsers, the icon itself is missing in many websites. Please make sure the wireless TV is atleast detected in firefox browser. I have tried so many changes and it does not detect my wireless tv or does not show my chromecast tv signal. Something is wrong with your browser, its not working fine. I have enabled the flag casting in the browser about:config as well. Appreciate it if you can please fix it asap as the streaming is abs fine in firefox browser and the same website runs slow in chrome and edge, which is why I need to use firefox to cast to my tv. Appreciate your help in this regards.

Thanks Manu

Asked by hulk 2 iminyaka edlule

Last reply by James 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Pantalla completa Disney plus

Hola , alguien sabe como puedo ver los videos de Disney plus en pantalla completa , sin las barras negras , al parecer los vídeos son 21:9 y mi monitor es 16:9 , alguna e… (funda kabanzi)

Hola , alguien sabe como puedo ver los videos de Disney plus en pantalla completa , sin las barras negras , al parecer los vídeos son 21:9 y mi monitor es 16:9 , alguna extensión que si funcione para cambiar la relación aspecto o hacer zoom ? gracias de antemano

Hello, does anyone know how I can see the Disney plus videos in full screen, without the black bars, apparently the videos are 21:9 and my monitor is 16:9

Asked by tantavaldezjhony 2 iminyaka edlule

Answered by tantavaldezjhony 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Prevent number of unread GMail messages from being displayed in Firefox tab

I would like to stop the default behavior of firefox displaying in the tab that contains my GMail how many unread GMail messages there are -- in other words to delete "(9… (funda kabanzi)

I would like to stop the default behavior of firefox displaying in the tab that contains my GMail how many unread GMail messages there are -- in other words to delete "(9)" from the attached photo and never have the count displayed -- if it could instead simply say "Inbox - xxx@gmail.com"

Asked by mp34142 2 iminyaka edlule

Answered by Terry 2 iminyaka edlule

  • Okugcinwe kunqolobane

Previous windows not opening at Startup

Hi there, "Open previous windows and tabs" is checked but it's not working. I had to go to history and opened it. It's happening for the last several weeks. Pls, let m… (funda kabanzi)

Hi there,

"Open previous windows and tabs" is checked but it's not working. I had to go to history and opened it. It's happening for the last several weeks.

Pls, let me know what to do. MD

Asked by asiuzzaman 2 iminyaka edlule

Last reply by FredMcD 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

Avast Passwords eol version?

Recently Firefox updated. It cleared all of my bookmarks and browser history isn't reloading my last session. I can get the bookmarks from Chrome. The big issue is how do… (funda kabanzi)

Recently Firefox updated. It cleared all of my bookmarks and browser history isn't reloading my last session. I can get the bookmarks from Chrome. The big issue is how do I reintegrate Avast Passwords eol version? Without this I need to use Chrome which isn't my ideal choice.

Asked by dartallis 2 iminyaka edlule

Answered by dartallis 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

How to unbind Ctrl+K?

I was using Ctrl+K on some websites to do things like site-specific search, task bars, and so forth, but recently Firefox started capturing it for focusing on the search/… (funda kabanzi)

I was using Ctrl+K on some websites to do things like site-specific search, task bars, and so forth, but recently Firefox started capturing it for focusing on the search/address bar (https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly#w_search).

Is there a way to unbind `Ctrl+K` in Firefox?

Asked by astrojuanlu 2 iminyaka edlule

Answered by astrojuanlu 2 iminyaka edlule

  • Kusonjululiwe
  • Okugcinwe kunqolobane

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-… (funda kabanzi)

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

Asked by ikhalil 2 iminyaka edlule

Answered by ikhalil 2 iminyaka edlule

  • Okugcinwe kunqolobane

My homepage keeps changing back to MSN.com

I have tried multiple times to just change my homepage. I am coming from Chrome, but I used to use Firefox a lot. I am going into my preferences almost daily to change my… (funda kabanzi)

I have tried multiple times to just change my homepage. I am coming from Chrome, but I used to use Firefox a lot. I am going into my preferences almost daily to change my homepage to just the standard firefox home, because I thought I was just crazy. It will not save my preference though, and I have no clue why. I do not have any extensions enabled or installed other than the ones that come with a fresh install of firefox. I even have those disabled right now. I have some themes downloaded, but I only am using the one provided my Mozilla. Nothing is allowing to save changes.

I will change it, and for like the next few times I open my browser, it will be saved, but after a day, its gone. I still have no clue as to why.

Can anyone help out?

Asked by Mariocraft95 2 iminyaka edlule

Last reply by cor-el 2 iminyaka edlule