Showing questions tagged: Show all questions
  • Solved
  • Locked
  • Archived

Tabs on Bottom

Hi Running Firefox 71.0 (64 bit) Well seems Firefox has been messing this up again. Anyone have the new work around solution to get my tabs back on the bottom again. T… (read more)

Hi

Running Firefox 71.0 (64 bit)

Well seems Firefox has been messing this up again.

Anyone have the new work around solution to get my tabs back on the bottom again. They were fine this morning then shut down and went out to lunch and when I came back they were back on the top again after months of being where I wanted them below my bookmark bar.

Thoughts on this?

Thanks Dave

Asked by scottish2 4 years ago

Answered by cor-el 4 years ago

  • Solved
  • Archived

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… (read more)

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 3 years ago

Answered by cor-el 3 years ago

  • Solved
  • Archived

missing print "page setup" in Mozilla v85

With the new v85 of Firefox... for Microsoft Print to PDF... the defaults for print headers & footers has changed and is no longer available to edit or even view. It… (read more)

With the new v85 of Firefox... for Microsoft Print to PDF...

the defaults for print headers & footers has changed and is no longer available to edit or even view. It seems as though my settings remain in place for other printing options like my physical printer but even there the options are not editable or viewable.

There used to be a "page setup" option but I have not be able to find this anywhere anymore.

I'm assuming that it has to do with the bug fix for pdf printing but doesn't seem that it should be an intended outcome of the fix.

Any work arounds anyone knows about or has found?

Asked by Cobalt TiNor 3 years ago

Answered by jscher2000 - Support Volunteer 3 years ago

  • Solved
  • Archived

Where did Page Setup / Margins & Header/Footer go?

I'm using Firefox 85.0.2 . . . I was doing this (below), to customize my header and footer, but in this version of FF, I no longer see this in Options - only in: about:c… (read more)

I'm using Firefox 85.0.2 . . . I was doing this (below), to customize my header and footer, but in this version of FF, I no longer see this in Options - only in: about:config . . . keyword "footer" . . . there, I would have to change it for 5 different ways of printing (to printers or to PDF)

I need to get rid of printing the URL in the footer - many times, it's too long, and I don't need it.

Where did the Page Setup option go?

I see in the current Print Options, you have to go to - More Settings / Margin / Custom - to see those. Why would they put this so many levels down?

It used to be: File / Page Setup / Margins & Header/Footer . . . "Customize" Headers & Footers:

Option 1 (left) . . . there are two leading spaces:

 > > &T
 > > &U . . . &D . . . &PT

Option 2 (left) . . . get rid of the ">"s, and just have the two leading spaces:

 &T
 &U . . . &D . . . &PT

Asked by sludge7051-x 3 years ago

Answered by jscher2000 - Support Volunteer 3 years ago

  • Archived

How to disable Command+D to "Bookmark This Page" in Mac?

I'm running Mojave 10.14.6 on a MacMini (late 2018) with 64 GB 2667 MHz DDR4 and Firefox v86.0 64-bit. I need to disable Command+D that's currently used to "Bookmark … (read more)

I'm running Mojave 10.14.6 on a MacMini (late 2018) with 64 GB 2667 MHz DDR4 and Firefox v86.0 64-bit.

I need to disable Command+D that's currently used to "Bookmark This Page".

I need Command+D for another use.

I've searched about:config for "bookmark" and get a lot of hits, but I can't tell which one controls the setting for Command+D.

Or . . . am I barking up the wrong tree?

I want to disable Command+D.

Leaving the ability to mouse up and click Bookmarks > "Bookmark This Page" is ok.

I just need to disable the keyboard shortcut Command+D for "Bookmark This Page".

Anyone got a "howto" for this?

Thanks!

Asked by JohnDohe 3 years ago

Last reply by cor-el 3 years ago

  • Solved
  • Archived

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… (read more)

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 2 years ago

Answered by DB-1 2 years ago

  • Solved
  • Locked
  • Archived

How to keep Mozilla VPN always on with Android OS?

Mozila VPN on Android sometimes appear to automatically turn itself off. The explanation could be in your settings on Android: Go to settings, - select Apps, - - cho… (read more)

Mozila VPN on Android sometimes appear to automatically turn itself off.

The explanation could be in your settings on Android: Go to settings, - select Apps, - - choose Mozilla VPN in the list, - - - go to Battery and select background Use,

go back to Mozilla VPN in the list, - - - go to Mobile Data, - - - - turn On "Allow Background Data Usage" - - - - turn On "Allow App while Data saver is On"

now your VPN shouldn't turn off any longer.

When restarting your phone the explanation why the Mozilla VPN is OFF is that to keep your security, the app requires re-authenticating with their servers (new encryption key).

Asked by 139744cwb$×^4ho74cqo#€7bxq3b 2 years ago

Answered by 139744cwb$×^4ho74cqo#€7bxq3b 2 years ago

  • Archived

Customizing Proton design

I was quite unhappy with the new Firefox Proton design, so I made a CSS file and copied the following code from a website. However, I don't know what to do to (1) slightl… (read more)

I was quite unhappy with the new Firefox Proton design, so I made a CSS file and copied the following code from a website. However, I don't know what to do to (1) slightly reduce the tab height, (2) get back tab borders for inactive tabs and (3) remove the small gaps between tabs. How exactly do I have to change the following code to do so (ideally, for convenience, please just complete the code accordingly)? Thanks in advance for any support!

/*** Tighten up drop-down/context/popup menu spacing (8 Sep 2021) ***/

menupopup:not(.in-menulist) > menuitem, 
menupopup:not(.in-menulist) > menu {
  padding-block: 2px !important; /* reduce to 3px, 2px, 1px or 0px as needed */ 
  min-height: unset !important; /* v92.0 - for padding below 4px */
}
:root {
  --arrowpanel-menuitem-padding: 4px 8px !important;
}

/*** Proton Tabs Tweaks ***/

/* Adjust tab corner shape, optionally remove space below tabs */

#tabbrowser-tabs {
    --user-tab-rounding: 6px;
}

.tab-background {
    border-radius: var(--user-tab-rounding) var(--user-tab-rounding) 0px 0px !important;
    margin-block: 1px 0 !important;
}
#scrollbutton-up, #scrollbutton-down { /* 6/10/2021 */
    border-top-width: 1px !important;
    border-bottom-width: 0 !important;
}
/* Container color bar visibility */
.tabbrowser-tab[usercontextid] > .tab-stack > .tab-background > .tab-context-line {
    margin: 0px max(calc(var(--user-tab-rounding) - 3px), 0px) !important;
}

Asked by laudesimperiales 2 years ago

Last reply by Paulgi 2 years ago

  • Archived

Cannot disable fullscreen animation (F11)

Hi, I'd like to disable that annoying animation when going to fullscreen (by hitting F11). Supposedly, setting the following should work: Go to about:config Set: full-s… (read more)

Hi, I'd like to disable that annoying animation when going to fullscreen (by hitting F11). Supposedly, setting the following should work:

Go to about:config

Set: full-screen-api.transition-duration.enter 0 0 full-screen-api.transition-duration.leave 0 0 full-screen-api.transition.timeout 0 full-screen-api.warning.delay 0 full-screen-api.warning.timeout 0

Restart

However, this does not have any effect in Firefox 94.0 on Ubuntu. Is this a bug/regression? Or is there some other way to disable the animation?

Asked by Bla Blubb 2 years ago

Last reply by cor-el 1 year ago

  • Solved
  • Archived

Credit card autofill stopped working

I am in the USA. Every time, on any page or website that I need to provide credit card info, when I click in the box to type in the CC numbers/expiration date/CCV, a win… (read more)

I am in the USA. Every time, on any page or website that I need to provide credit card info, when I click in the box to type in the CC numbers/expiration date/CCV, a window pops up as it should (for auto-fill) with my credit card information. In that window, I can scroll over the different credit cards, click on the one I want to use, and it SHOULD auto-fill into the box where the numbers would normally be typed in. Now, the window still pops up and I can scroll over the credit cards and choose one, but when I click on any of the particular credit cards, the auto-fill doesn't work. The boxes in "settings" are checked to allow auto-fill. It worked for months, then just stopped. Thanks for your assistance!

Asked by dougumbarger 2 years ago

Answered by Tad Tweed 2 years ago

  • Archived

Minimize, Maximise and Exit all now hiding.

I live with Firefix always in full screen. I Don't like seeing any bars or buttons of any kind. Befor the latest update, when I moved my mouse to the top of the screen … (read more)

I live with Firefix always in full screen. I Don't like seeing any bars or buttons of any kind.

Befor the latest update, when I moved my mouse to the top of the screen my tabs popped down and in the top right corner was the standard icons for "minimize" "maximize" and "exit".

With the latest update the tabs are there but the 3 buttons have gone.

If I exit full screen (F11) then they are there again, but I dont want to have to exit full screen every time I change between programes which I do every few mins. I'd be popping pages in and out of full screen every few mins!

How do I get the buttons back all the time?

Asked by lucyblairs 2 years ago

Last reply by tiffanyboyd78 2 years ago

  • Archived

'Use autoscrolling' and 'Enable DRM' settings keep being unset

Lately, Firefox unchecks the 'use autoscrolling' and 'play DRM-controlled content' options sometimes (but not every time) when it starts. Other settings don't seem to be … (read more)

Lately, Firefox unchecks the 'use autoscrolling' and 'play DRM-controlled content' options sometimes (but not every time) when it starts. Other settings don't seem to be affected. It does seem to unset both at once, never one or the other at a time.

I have begun using Firefox routinely on two computers, both signed into the same sync profile. My best guess is that maybe one profile is overwriting the other? Both of these options are set on the second system, but maybe there's something going wrong with the sync?

Thanks, Patrick

Asked by patrickking 2 years ago

Last reply by cor-el 1 year ago

  • Solved
  • Archived

Column headers, title bars

I was in two minds whether to post this i not as quite minor really, that said Thunderbird will be my default email client on several machines so may as well get Q's out … (read more)

I was in two minds whether to post this i not as quite minor really, that said Thunderbird will be my default email client on several machines so may as well get Q's out of the way.

Changed the font size for emails and folder text which is spot on, the only other thing would be to have the title bars or column headers (subject, correspondent, date and so on) in bold as a quick glance makes them seem part of the emails.

This option is probably available similar to changing the font inside config file but I may not be searching for the right thing, 'headers' returns results for the actual message format.

On another note, in case this pops up later on, while dragging icons from the toolbar selection tray the 'delete' button didn't quite make it, the button is no longer in the tray (as an option) or on the menu ?

Many thanks all

Asked by JustOne 2 years ago

Answered by sfhowes 2 years ago

  • Archived

Firefox 91.4.1 Library Button is missing by default

Hi there, I'm am trying to customize Firefox 91.4.1 ESR for my users who were using 78.10.1 before, however cannot find how to add Library-Button (which was default in p… (read more)

Hi there,

I'm am trying to customize Firefox 91.4.1 ESR for my users who were using 78.10.1 before, however cannot find how to add Library-Button (which was default in previous versions) to their UI. Since I am avoiding to amend pref.js and user.js, and this option is not controlled in latest admx template, maybe there is a way to use firefox.cfg? If yes, then how to add it there? Will it not lock users UI and he wont be able to change it afterwards? How about extensions interfering with UI? Also, will the removal of the icon continue in the next ESR versions?

Many thanks for your help in advance!

Asked by Malfunction68 2 years ago

Last reply by cor-el 2 years ago

  • Archived

Changing Thunderbird Inbox Font Size (TB Version 91.4.1 (64 bit) Win 10)

I need to change the font size for Thunderbird inbox etc. I've got TB Version 91.4.1 (64 bit) running on Win 10. I found messages about how to do it for version 78, but … (read more)

I need to change the font size for Thunderbird inbox etc. I've got TB Version 91.4.1 (64 bit) running on Win 10.

I found messages about how to do it for version 78, but they no longer apply. Tools now has Preferences instead of "Options" and "Advanced" has font control that work within emails, but have no effect on the Inbox and such.

As noted in the emails for version 78, this seems to be a recurring issue where Inbox font size is controlled by a hidden mechanism different from the easily accessed control used for text within emails.

Would appreciate someone with deeper knowledge letting me, and I assume others, know how to change Inbox font size.

Asked by turtleprime 2 years ago

Last reply by Toad-Hall 1 year ago

  • Solved
  • Archived

Dark mode no longer stays active

I normally have Dark Mode always enabled. This week it's constantly switching to "Follow Device Theme" which then makes it the Light theme. Interestingly, my phone's th… (read more)

I normally have Dark Mode always enabled.

This week it's constantly switching to "Follow Device Theme" which then makes it the Light theme.

Interestingly, my phone's theme is also set to Dark mode so the Follow setting doesn't appear to work.

Thanks!

Asked by gurtfrobe 2 years ago

Answered by gurtfrobe 2 years ago