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

HERE is the answer to put "TABS BELOW" which will work with Firefox V90 using the - userChrome.css - file

HERE IS THE ANSWER Here is the answer to get TABS BELOW with Firefox V90 . . copy all of this code below the broken line into your - userChrome.css - file and save it. Yo… (read more)

HERE IS THE ANSWER Here is the answer to get TABS BELOW with Firefox V90 . . copy all of this code below the broken line into your - userChrome.css - file and save it. You can modify the 45px in this line if you wish to get an appropriate height . . just experiment with different numbers till you get it right --menubar-height: 45px; /*30px|41px=11px; caption buttons on menubar*/

Also to make the tabs wider or narrower, modify the line which is coded width: 50vw !important;

Finally you must enable - css - in Firefox, by typing about:config into your address bar, and search for toolkit. When all the toolkit options appear change the one which says toolkit.legacyUserProfileCustomizations.stylesheets to TRUE by click the icon in the right hand column. Than close Firefox and reopen, and check how it looks This will enable your - css - file to be read, and interpreted and accepted by the Firefox browser.

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

/* TABS: bottom - Firefox 65 and later - updated for 89+ */
/* https://searchfox.org/mozilla-release/source/browser/themes/shared/tabs.inc.css */
/* https://raw.githubusercontent.com/Aris-t2/CustomCSSforFx/master/classic/css/tabs/tabs_below_navigation_toolbar_fx89.css */
/* https://developer.mozilla.org/en-US/docs/Tools/Browser_Toolbox */

/* ROOT - VARS */
/* you can adjust the CSS variables until it looks correct */
/* you can use the Browser Toolbox to get the toolbar heights */

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

  --tab-min-height: 40px !important;
  --tab-min-width:  60px !important;

  --tab-adjust:  0px; /* adjust tab bar - only for 68-73 */
  --tab-caption: 5px; /* caption buttons on tab bar */
}

/* TAB BAR - 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;}

#TabsToolbar {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  width: 50vw !important;
}

#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;
}

/* TabsToolbar with menubar and titlebar hidden - rules for Firefox 65-73 */
*|*:root[tabsintitlebar]:not([inFullscreen="true"]):not([sizemode="maximized"]) #toolbar-menubar[autohide="true"] ~
 #TabsToolbar{
  bottom: var(--tab-adjust); /*ADJUST*/
}

/* TABS: height */
#tabbrowser-tabs,
#tabbrowser-tabs > .tabbrowser-arrowscrollbox,
.tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] {
  min-height: var(--tab-min-height) !important;
  max-height: var(--tab-min-height) !important;
}

#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;
/*  z-index: 1 !important; */
}

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

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

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

/* Override vertical shifts when moving a tab */
#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;
}

/* Hide window-controls and caption buttons on Tab Bar */
#TabsToolbar #window-controls {display: none !important;}
#TabsToolbar .titlebar-buttonbox-container {display: none !important;}

Asked by Trevor George, Bristol, UK 1 year ago

Answered by Trevor George, Bristol, UK 1 year ago

  • Solved
  • Archived

Google search page functions broken.

When I go to google.com and do a search the results page has the "tools" button but it does not work. The "people also ask" categories are also broken (they will not expa… (read more)

When I go to google.com and do a search the results page has the "tools" button but it does not work. The "people also ask" categories are also broken (they will not expand), and, if I click the "images" filter button to view images associated with my search it either shows no images (or only a few images) and a bunch of blank boxes. I have found that if I hold the shift key and click the reload button everything is back and working properly until the next time I do a google.com search, then it is back to the same odd behavior. So, my assumption here is that either a cookie or some site data is corrupting the results page for my search. Running Firefox 92.0 (64-bit) on a Windows 7 Dell machine and everything was working fine until about two months ago. Also, Chrome does not show the same behavior. BTW. I have also done everything I have found that was recommended to fix Firefox issues with Google search. Run Firefox in private mode, run without plugins, changed themes, created new profile, I even completely uninstalled Firefox and did a clean install all with the same results. Any help is appreciated. It is almost got me ready to move back to Chrome.

Asked by b.j.p.5252 1 year ago

Answered by dveditz 1 year ago

  • Archived

FFox v92 - Menu Spacing - Bug? (No, not the usual question)

FFox 92 update today. Menu spacing went to double. No shock there. Found the CSS code below for UserChrome.css and set it up. EX. menupopup > menuitem, menupopup &… (read more)

FFox 92 update today. Menu spacing went to double. No shock there. Found the CSS code below for UserChrome.css and set it up.

EX.

menupopup > menuitem, menupopup > menu {
  padding-block: 4px !important;
}
:root {
  --arrowpanel-menuitem-padding: 4px 8px !important;
}

Here's the issue: I want it tighter than 4px. So, I set it down to 2px... eventually dropping it to all 0px settings.

EX:

menupopup > menuitem, menupopup > menu {
  padding-block: 0px !important;
}
:root {
  --arrowpanel-menuitem-padding: 0px 0px !important;
}

But, it doesn't get any smaller than the above 4/8px set up. Bug? Perhaps there's another CSS setting to be tweaked for V 92? I do not have any other CSS for these items elsewhere in my UserChrome file.

Asked by MozzieBob 1 year ago

Last reply by RemySecor 1 year ago

  • Solved
  • Locked
  • Archived

89.0b2 Revert new tab design

Today I updated my Firefox Developer Edition to version 89.0b2 and now I just can not look at this browser anymore, "Inspired new tab design" is taking too much space and… (read more)

Today I updated my Firefox Developer Edition to version 89.0b2 and now I just can not look at this browser anymore, "Inspired new tab design" is taking too much space and now became largest and at the same time least information-dense panel in my entire desktop! I searched around the web for a bit in hopes that I will find a theme or an add-on that will revert this particular change but no luck. I really want to revert to old UI look (at least tabs bar), there should be default theme or option to get back to old style. After some investigation I found userChrome.css but don't really want to install it (maybe this is actually the way of doing this kind of styling). Please help me revert UI design to old one.

Asked by PepeTheFrog21 2 years ago

Answered by Terry 2 years ago

  • Solved

Full screen border

I use Firefox Developer Edition and recently I noticed a problem when watching videos on any website in full screen mode. As can be seen on the attached image, there is a… (read more)

I use Firefox Developer Edition and recently I noticed a problem when watching videos on any website in full screen mode. As can be seen on the attached image, there is a weird pixelated border around the video.

Asked by DayronPL 3 weeks ago

Answered by DayronPL 2 weeks ago

  • Solved
  • Archived

Consistent "Trouble find that site" Errors on Windows 11

Recently I upgraded my Windows 10 to Windows 11 and since doing so, I've had consistent errors while browsing the web on Firefox. Most notably the "Humm. We're having tro… (read more)

Recently I upgraded my Windows 10 to Windows 11 and since doing so, I've had consistent errors while browsing the web on Firefox. Most notably the "Humm. We're having trouble finding that site." error message.

For example, when visiting, say Verizon.com, the tab will display the aforementioned error to which I press Try Again and the website loads correctly every-time. No hiccups on the refresh.

I've tried the following:

  1. I've performed a completely clean uninstall of Firefox and then reinstall
  2. Cleared all browser history/cache
  3. Removed all extensions
  4. Disabled IPv6, HTTPS Over DNS, No Proxy
  5. Ran through Firefox's troubleshooting
  6. Used Firefox Troubleshooting Mode in the Browser
  7. Tested that the problem does not happen while using Edge

I've never had a single problem on Windows 10 with Firefox. Curious if others are experiencing the same issues and if there are any fixes. Nothing else on the PC has changed.

  • Windows 11 21H2 2200.348
  • Network driver is the latest Win11 edition
  • Firefox 95

Asked by Justin 1 year ago

Answered by Justin 1 year ago

  • Solved
  • Archived

view image info gone from right-click menu in Developer v87.0b3 (64-bit)

When I right click on an image in Firefox, I've always been able to select "view image info". This is very helpful, but now it appears to be gone in latest Developer edi… (read more)

When I right click on an image in Firefox, I've always been able to select "view image info". This is very helpful, but now it appears to be gone in latest Developer edition. Do others see the same. If so, why was it removed? It's still there in the regular version of Firefox.

Asked by spinweb 2 years ago

Answered by jscher2000 - Support Volunteer 1 year ago

  • Archived

Firefox Can’t Open This Page

I just installed the latest Version of Firefox 101.0 for Windows 10. Then when I tried to download a pdf file from my yahoo mail I received the following message: "Proble… (read more)

I just installed the latest Version of Firefox 101.0 for Windows 10. Then when I tried to download a pdf file from my yahoo mail I received the following message: "Problem loading page" Firefox Can’t Open This Page To protect your security, dl-mail.ymail.com will not allow Firefox to display the page if another site has embedded it. To see this page, you need to open it in a new window. Learn more… Open Site in New Window Report errors like this to help Mozilla identify and block malicious sites

So, in order to open the page I have to press "Open Site in New Window"

Please advice why happened this issue and how can be fixed.

Asked by eladopoulos 12 months ago

Last reply by jscher2000 - Support Volunteer 12 months ago

Firefox 109.0 - Forced "Extensions" icon

I will be to-the-point: Firefox 109.0 has forced the "extensions" icon (a puzzle piece) on my Bookmarks toolbar. (1) I do not wish for it to appear there (2) I am not gi… (read more)

I will be to-the-point: Firefox 109.0 has forced the "extensions" icon (a puzzle piece) on my Bookmarks toolbar.

(1) I do not wish for it to appear there (2) I am not given the possibility to remove it from the "Customise toolbar" screen

Please assist.

Asked by hevinroyal 4 months ago

Last reply by Paul 2 months ago

  • Archived

Problem with embedded video i frame on firefox only.

Hello i have a problem with view video on my website. Other browsers like chrome, opera, edge works fine, the problem only exists on Firefox. I've tried many things like … (read more)

Hello i have a problem with view video on my website. Other browsers like chrome, opera, edge works fine, the problem only exists on Firefox. I've tried many things like turning off extensions and site protections, turning off "Use hardware acceleration when available" option, i even allowed autoplay videos and sounds on every site, and problem still isn't solved. You guys have any ideas what's wrong, in older versions of firefox everything worked fine. Here's link: https://www.uczelnie.pl/miasto/warszawa/uczelnia/277/akademia-leona-kozminskiego-alk

Asked by azalewski 1 year ago

Last reply by azalewski 1 year ago

  • Archived

MAC Catalina 10.15.7 - Firefox version 90, the Facebook icons for like, love, care, haha, wow, sad and mad do not appear on the screen

I am running MAC Version Catalina 10.15.7, on Firefox version 90.0, and after installing the update today, every single "like" icon on the Facebook no longer appears. th… (read more)

I am running MAC Version Catalina 10.15.7, on Firefox version 90.0, and after installing the update today, every single "like" icon on the Facebook no longer appears. the placeholder is still there, as you hover over the area, you can still click on the area, but the icons no longer appear. This happened in 89.0.2, but only some of the images for the like icons would disappear, not every single one of them.

Asked by cathysusanwelsh 1 year ago

Last reply by cor-el 1 year ago

  • Archived

Pressing "Ctrl+Z" to Undo text in the search box no longer has all previous searches

Pressing "Ctrl+Z" in the search box no longer has all the previous searches. Sometimes if I recently used the search box and haven't navigated away from the page I was o… (read more)

Pressing "Ctrl+Z" in the search box no longer has all the previous searches. Sometimes if I recently used the search box and haven't navigated away from the page I was on it will remember my past few searches but if I go to do other things and then go back to the box, pressing 'Ctrl+Z' does nothing. The use of a separate search box that remembers your recent searches is a primary reason I use Firefox over other browsers. Yet this functionality seems to be broken. I am surprised that it has not gotten more outcry from other people who use the search box! If there is some setting I need to change, let me know, but I don't know why that specific feature would have changed all of a sudden so that it only works every once in a while.

Asked by The Other Realm 1 year ago

Last reply by cor-el 1 year ago

  • Solved
  • Archived

other bookmarks folder

Hello, I would like to know how to remove 'other bookmarks' folder from the right side of bookmark toolbar that showed up suddenly on my browser, it's right after the arr… (read more)

Hello, I would like to know how to remove 'other bookmarks' folder from the right side of bookmark toolbar that showed up suddenly on my browser, it's right after the arrows to show more bookmarks. I can't seem to find a way to delete this.

Asked by nicaya 2 years ago

Answered by cor-el 2 years ago

  • Archived

Proton tabs

With Firefox 91, I can no longer disable the hideous Proton changes to tabs. Separating tabs from their content is a really poor user interface decision. It makes it hard… (read more)

With Firefox 91, I can no longer disable the hideous Proton changes to tabs. Separating tabs from their content is a really poor user interface decision. It makes it harder to tell which tab is the current tab. With Proton, the active tab is slightly brighter than the inactive tabs. For older folks and color blind folks, this makes it all but impossible to to tell which tab is active.

If you won't come to your senses and revert this bad user interface decision, then at least add an official option to disable it and go back to the old tab style that other browsers use. If you won't do that, then I will just have to use a different browser. Which makes me very sad, because aside from your bad sense in user interface design, I loved Firefox.

Asked by Daniel Ethier 1 year ago

Last reply by p.f.sanderse 1 year ago

  • Archived

wowway

I have used wowway.net for my email service on Firefox for years. Recently I have become unable to login to my email account using wowway.net. When I click the "Email" … (read more)

I have used wowway.net for my email service on Firefox for years. Recently I have become unable to login to my email account using wowway.net. When I click the "Email" button on the wowway.net homepage (https://wowway.net/?inc=27) from within Firefox, a new page opens entitled "Redirecting to Login" with the message "Please wait while we are logging you in." This page stays open indefinitely without connecting to "https://email.wowway.com/modern." The wowway technical support have been unable to help me solve the problem and suggested I use Microsoft Edge instead of Firefox. Microsoft Edge does work, but I much prefer to stay with Firefox if possible.

Can you help me?

Asked by kentmh 1 year ago

Last reply by kentmh 1 year ago

  • Archived

Firefox 102.0.1.8221 launch causes Windows 7 64bit to reboot

Last few days any Firefox 102.0.1.8221 launch causes my Windows 7 64bit to reboot, usually when I try to mouse click anything in Firefox after it's fired up and restored … (read more)

Last few days any Firefox 102.0.1.8221 launch causes my Windows 7 64bit to reboot, usually when I try to mouse click anything in Firefox after it's fired up and restored open tabs, however even if I don't mouse click anything Firefox will force a reboot within a minute or so.

This Firefox Win 7 reboot behaviour only started after the last Firefox update, though I would point out that around update version 100.nn I started getting failed update notifications from within Firefox which necessitated a manual newer version Firefox download and install.

Running Windows 7 in safe mode with networking on allows Firefox to function without crashing, albeit slowly and with no MSE protection available etc.

Only one crash report dated 16/07/2022 with following content: Crash ID: bp-d8383165-9c77-45e4-9929-a3ce12160527

Please note I'm sending this report via Firefox on my iMac coz that still works...

Asked by JabbaLeChat 10 months ago

Last reply by JabbaLeChat 10 months ago

  • Solved

Video stopped working

I upgraded Firefox to 109.0 on OpenSUSE Linux today as an update. Firefox no longer plays videos. Chrome is still playing the videos, so the codecs are on my machine. … (read more)

I upgraded Firefox to 109.0 on OpenSUSE Linux today as an update. Firefox no longer plays videos. Chrome is still playing the videos, so the codecs are on my machine. Is there anything I can do to fix this?

Asked by jay.treiman 4 months ago

Answered by jonzn4SUSE 4 months ago