Отображение вопросов с тегом: Показать все вопросы
  • Решено
  • Архивировано

How to change menu/toolbar color after update?

Hey all, I just updated Firefox on PC and the updater asked a couple questions. I chose "Visionary" as the answer to a question because it suited me the best out of all t… (читать ещё)

Hey all, I just updated Firefox on PC and the updater asked a couple questions. I chose "Visionary" as the answer to a question because it suited me the best out of all the options. However, this also changed the colors of my browser menu and toolbar to green. The thing is, while green is a fine color, I would never select it as "my" color for anything ever.

I've tried to change the color in about:preferences, but nothing I can find seems to work. Any ideas?

Thanks!

Задан RoyDA 11 месяцев назад

Дан ответ cor-el 11 месяцев назад

  • Решено
  • Архивировано

Multirow Bookmarks

Hi, everyone. My multirow bookmarks no longer seem to work since my latest update to 107.0 (64 bit). My computer crashed and when it came back up Firefox no longer worked… (читать ещё)

Hi, everyone. My multirow bookmarks no longer seem to work since my latest update to 107.0 (64 bit). My computer crashed and when it came back up Firefox no longer worked. I reinstalled it and have a bit of cleanup to do, but everything works now except my faithful (up-to-now) multirow toolbar. Here's the code in my userChrome.css file.

/* Multi-Row Bookmarks Toolbar */

  1. PersonalToolbar {
 /* Override max-height */
 min-height: unset !important;
 max-height: unset !important; */

}

  1. PlacesToolbar > hbox:first-child {
   display: block

}

  1. PlacesToolbarItems {
   display: flex;
   flex-wrap: wrap

}

Previously, this was in my profile folder. If I move this out of the profile folder, my browser works fine but there is no multi-row toolbar. If I put it back into the profile folder, I have a multi-row toolbar, but no contentd in the main window.

I am perplexed. Help? --elizabeth

Задан baker_eliz 10 месяцев назад

Дан ответ cor-el 10 месяцев назад

  • Решено
  • Архивировано

[Firefox 96] My userContent.css and userChrome.css Codes isn't Being Applied Anymore

Until yesterday everything I customized for Firefox 89 in June of 2021 and FF 91 in August of 2021 was working fine. Today I updated to Firefox 96.0 and when I open my F… (читать ещё)

Until yesterday everything I customized for Firefox 89 in June of 2021 and FF 91 in August of 2021 was working fine.

Today I updated to Firefox 96.0 and when I open my Firefox returned to that old visual that I hated

tabs with spaces , but that's not the worst. The worst is the newTab visual that came back to the small and ugly bookmarks of the page we usually navigate. That are set on userContent.css I remember.

I checked some vars at about:config and everything is as it was.

So do I need to set true or false any new var there? These .css files are like they was never read. It looks like to me there is a new var, we need to change it.

What did happen?

  • my userChrome.css file content below:
/* Begin - Smart Bookmarks Bar CSS Imports */
@import url("chrome://smartbookmarksbar/skin/global/base.css");
@import url("chrome://smartbookmarksbar/skin/global/mouseover-on.css");
@import url("chrome://smartbookmarksbar/skin/global/hideFoldersNames-on.css");
@import url("chrome://smartbookmarksbar/skin/global/hideNoFaviconNames-on.css");
@import url("chrome://smartbookmarksbar/skin/global/spacing-0.css");
@import url("chrome://smartbookmarksbar/skin/global/autohideBar-off.css");
@import url("chrome://smartbookmarksbar/skin/themes/firefoxDefault.css");
@import url("chrome://smartbookmarksbar/skin/themes/firefoxDefault_mouseover-on.css");
@import url("chrome://smartbookmarksbar/skin/themes/firefoxDefault_mouseover-on_hideNoFaviconNames-on.css");
/* End - Smart Bookmarks Bar CSS Imports */

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



/*** BEGIN Firefox 77 (June 2, 2020) Override URL bar enlargement ***/

  /* Compute new position, width, and padding */

  #urlbar[breakout][breakout-extend] {
    top: 5px !important;
    left: 0px !important;
    width: 100% !important;
    padding: 0px !important;
  }
  /* for alternate Density settings */
  [uidensity="compact"] #urlbar[breakout][breakout-extend] {
    top: 3px !important;
  }
  [uidensity="touch"] #urlbar[breakout][breakout-extend] {
    top: 4px !important;
  }

  /* Prevent shift of URL bar contents */

  #urlbar[breakout][breakout-extend] > #urlbar-input-container {
    height: var(--urlbar-height) !important;
    padding: 0 !important;
  }

  /* Do not animate */

  #urlbar[breakout][breakout-extend] > #urlbar-background {
    animation: none !important;;
  }

  /* Remove shadows */

  #urlbar[breakout][breakout-extend] > #urlbar-background {
    box-shadow: none !important;
  }

/*** END Firefox 77 (June 2, 2020) Override URL bar enlargement ***/


/*** BEGIN Firefox 89 (June 2, 2021) ***/


/* https://github.com/black7375/Firefox-UI-Fix */

@media (-moz-proton) {

  /* Toolbar Height */
  #TabsToolbar
  .toolbar-items, .tabbrowser-tab,
  .titlebar-buttonbox-container {
    max-height: 34px !important;
  }

  :root[uidensity=compact] #TabsToolbar,
  :root[uidensity=compact] .toolbar-items, .tabbrowser-tab
  :root[uidensity=compact] .titlebar-buttonbox-container {
    max-height: 30px !important;
  }
  :root[uidensity=touch] #TabsToolbar,
  :root[uidensity=touch] .toolbar-items, .tabbrowser-tab
  :root[uidensity=touch] .titlebar-buttonbox-container {
    max-height: 42px !important;
  }

  
}  
  

/*** END Firefox 89 (June 2, 2020) ***/

/*** BEGIN Firefox 91 (August, 2021) ***/
/*** Tighten up drop-down/context/popup menu spacing ***/

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


/*** END Firefox 91 (August, 2021) ***/


  • and my userContent.css file content below:
/*AGENT_SHEET*/

/* Firefox 57+ userChrome.css tweaks ************************************************************/
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **********/
/* by Aris (aris-addons@gmx.net)*****************************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ********************************************/
/************************************************************************************************/

/*************************************************************************************************

  ENABLING options: remove the combination of / and * before @import
  DISABLING options: add the combination of / and * before @import
  
  Some @import features might not work properly on macOS and Linux -> Firefox bug
  
  CSS tweaks won't work, if @namespace references are used inside .css files!

*************************************************************************************************/

/************************************************************************************************/
/* about:addons *********************************************************************************/
/************************************************************************************************/

/* NOTE: 'Version number for add-ons' will stop working soon, because Mozilla is going ***********
		 to drop XBL support: see https://bugzilla.mozilla.org/show_bug.cgi?id=1397874 **********/

/* version number for add-ons *******************************************************************/
@import url(./css/aboutaddons/addonlists_show_addon_version_number.css); /**/

/* addons page appearance - only use one at a time **********************************************/
@import url(./css/aboutaddons/addons_manager_alternative_appearance.css); /**/
/* @import url(./css/aboutaddons/addons_manager_alternative_appearance_aero.css); /**/	/* <-- AERO colors */

/* compact item lists - only use one at a time **************************************************/
/* @import url(./css/aboutaddons/addonlists_compact.css); /**/
/* @import url(./css/aboutaddons/addonlists_compact_more_compact.css); /**/

/* other settings *******************************************************************************/
/* @import url(./css/aboutaddons/addonlists_only_show_buttons_on_hover.css); /**/
/* @import url(./css/aboutaddons/addonlists_replace_button_labels_with_icons.css); /**/
@import url(./css/aboutaddons/description_page_alternative_content_order.css); /**/
@import url(./css/aboutaddons/recentupdates_category_always_visible.css); /**/
/* @import url(./css/aboutaddons/search_category_always_visible.css); /**/


/************************************************************************************************/
/* about:preferences ****************************************************************************/
/************************************************************************************************/

/* preferences page appearance - only use one at a time *****************************************/
@import url(./css/aboutpreferences/preferences_alternative_appearance.css); /**/
/* @import url(./css/aboutpreferences/preferences_alternative_appearance_aero.css); /**/	/* <-- AERO colors */
/* @import url(./css/aboutpreferences/preferences_alternative_appearance_v2.css); /**/


/************************************************************************************************/
/* about:newtab / about:home ********************************************************************/
/************************************************************************************************/

/* @import url(./css/aboutnewtab/dark_appearance.css); /**/
@media (-moz-proton) {
  @-moz-document url("about:home"), url("about:newtab") {
    /** Activity Stream - Search Focus Border: like URL ***********************/
    /* At DarkMode, Color */
    body[style*="--newtab-background-color:rgba(28, 27, 34, 1);"],
    body[style*="--newtab-background-color:rgba(42, 42, 46, 1);"] {
      /* inner */
      --newtab-focus-border: rgba(0, 221, 255, 0.5) !important; /* Original: #B5D3FF, Better color-mix(in srgb, #B5D3FF 70%, transparent) */
      --newtab-focus-border-selected: rgba(0, 221, 255, 0.5) !important; /* Original: #B5D3FF */
    }

    /** Activity Stream - Web Site Icon: full size ****************************/
    /* Remove Firefox Logo on new Tabs
    div.logo-and-wordmark {
      display:none !important;
    }
    */
    .tile {
      width: 100px !important;
      height: 100px !important;
    }
    .top-site-icon .rich-icon {
      width: 100px !important;
      height: 100px !important;
    }
    .top-site-outer .tile .icon-wrapper {
      width: 100px !important;
      height: 100px !important;
    }
  }
}



/************************************************************************************************/
/* WEB CONTENT **********************************************************************************/
/************************************************************************************************/

/* top level image on white background (can sometimes cause glitches) - only use one at a time **/
/* @import url(./css/webcontent/toplevel_image_classic_v1.css); /**/
/* @import url(./css/webcontent/toplevel_image_classic_v2.css); /**/


/************************************************************************************************/
/************************************************************************************************/
/************************************************************************************************/

Thanks in advance.

Задан Marcelo 1 год назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

Why was an unremovable "Extensions" menu added to my toolbar?

I would like to be able to remove this from my toolbar but cannot which is inconsistent to how customizing the toolbar normally functions.

Задан dimike96 11 месяцев назад

Дан ответ cor-el 11 месяцев назад

  • Решено
  • Архивировано

Dev Tools

I "upgraded to V90. since then, the URL box is highlighted red/grey stripes. The robot head icon is now in the URL box and it says "Browser is under remote control (reaso… (читать ещё)

I "upgraded to V90. since then, the URL box is highlighted red/grey stripes. The robot head icon is now in the URL box and it says "Browser is under remote control (reason Dev Tools). I've gone in about:config and set all variables to False, yet they reset themselves to true every time. How do I disable the DevTools. Thanks

Задан john.enrietto 2 года назад

Дан ответ john.enrietto 2 года назад

  • Решено
  • Архивировано

Firefox: Move Find bar to the top

I recently upgraded my system and, after installing and using Firefox, I notice the Find (Ctrl + F) bar is now at the bottom of the window. Whereas, it was previously at… (читать ещё)

I recently upgraded my system and, after installing and using Firefox, I notice the Find (Ctrl + F) bar is now at the bottom of the window. Whereas, it was previously at the top (which is more like every other application I use).

After some head scratching and web searches, I remembered I had to fix this issue previously (after a Firefox upgrade some time back). The method to fix it then could be found here: [there a way to put the Find Bar at top] That link is of course to the same question asked 4 years back.

I have once again followed the procedure there explained per: • Access my Firefox profile folder. In my case:

  C:\Users\<Me>\AppData\Roaming\Mozilla\Firefox\Profiles\5ym42ewi.default

• Create folder therein called ‘chrome’ • In that folder create a file called ‘userChrome.css’ • In that file add text:

  .browserContainer > findbar {
    -moz-box-ordinal-group: 0;
  }

However, after doing that (and restarting Firefox), the Find bar stubbornly remains glued to the bottom of the window.

Can anyone tell me how to solve this issue?

As a separate note to the developers: This issue is long-standing, that a web search reveals is still relevant to many users. Any chance of considering making it a standard option?

Задан Spinner 1 год назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

Firefox automatically downloading files instead of asking

After a forced update, firefox stopped giving the popup that lets you choose what to do with the file. A temporary fix is to go into options and set "Always ask you wher… (читать ещё)

After a forced update, firefox stopped giving the popup that lets you choose what to do with the file.

A temporary fix is to go into options and set "Always ask you where to save files", however this is clunky, and much much slower, so is there any way to get this popup back?

If not, then i will have to migrate to a different browser for safety, since this new "Feature" can be easily abused by hackers and malicious websites.

Задан cvfnfyltcglvwjgzve 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад

  • Решено
  • Архивировано

How do I disable the new download notification?

I save a lot of images from certain sites, and prior to me finally installing the latest update because your stupid system notifies me every few hours of an update and I … (читать ещё)

I save a lot of images from certain sites, and prior to me finally installing the latest update because your stupid system notifies me every few hours of an update and I dismiss 20 times a day for weeks on in.... I found that this latest update ruined firefox even further because now every single time I download an image, it pops the stupid download list on top of everything till I click somewhere instead of silently downloading like it used to do. I found no options at all for disabling this new terrible feature that you for some reason forced on us against our will yet again.

Задан Vas 1 год назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

Restoring add-ons, extensions, settings, etc from Old Firefox Data

Firefox would not finishing loading so I (stupidly) clicked "refresh firefox" not realizing it would loose add-ons, extensions, etc. It created an Old Firefox Data folder… (читать ещё)

Firefox would not finishing loading so I (stupidly) clicked "refresh firefox" not realizing it would loose add-ons, extensions, etc. It created an Old Firefox Data folder if that can somehow get it back to as it was instead of having to figure what add-ons I had & reinstall everything, etc. My Bookmarks still appear but I need the add-ons back!

Задан WTM_W7 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад

  • Решено
  • Архивировано

App Mode feature is no longer available?

In my opinion, App Mode is a very useful feature that allows installing a website as an app. However, I am unable to see any option related to App Mode in 95.0.2 (64-bit)… (читать ещё)

In my opinion, App Mode is a very useful feature that allows installing a website as an app. However, I am unable to see any option related to App Mode in 95.0.2 (64-bit). Could you please help me about this issue?

Задан sahintelli 1 год назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

Cursor goes to address bar instead of search bar

In Ubuntu 18.04, I bring up a new page, click in the search bar in the middle of the page. Then when I start typing it jumps to the address bar although I have already pl… (читать ещё)

In Ubuntu 18.04, I bring up a new page, click in the search bar in the middle of the page. Then when I start typing it jumps to the address bar although I have already placed and preferred the search bar to the right. No! NO! NO!

I use Duck Duck Go but Google does the same.

It is bad enough that the upgrade was automatically loaded but on top of that, changing preferences including dumping my home page. Change privacy settings without asking ( to a lower level on top of that ).

Really POOR form.

Задан dee3 2 года назад

Дан ответ jscher2000 - Support Volunteer 2 года назад

  • Решено
  • Архивировано

gif not playing

since the recent updates gifs no longer play on google or any other search engine I've checked Type "about:config" into your address bar, then press "Enter." Look for t… (читать ещё)

since the recent updates gifs no longer play on google or any other search engine I've checked

Type "about:config" into your address bar, then press "Enter." Look for the line that says "image.animation_mode" and double-click it. Change the mode to "normal" if it isn't already; if it says "once" or "none," animated GIFs will not load correctly.

and I'm set to normal I don't have any security software causing this that I know of how do I get my gif animation back?

Задан w.hthomas 1 год назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

Where is the video downloader helper icon in the latest version?

Hello, until yesterday, I had the video downloader helper icon on the right hand side of my top list of sites near my Firefox account icon. Now in the 89.02 version, it's… (читать ещё)

Hello, until yesterday, I had the video downloader helper icon on the right hand side of my top list of sites near my Firefox account icon. Now in the 89.02 version, it's gone so I can't download directly movie trailers for example. How do I put that icon back on around there? Thanks Luc

Задан CL 2 года назад

Дан ответ FredMcD 2 года назад

  • Решено
  • Архивировано

[2022] Any way to change the color of individual Bookmark folders in the sidebar?

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); PlacesToolbarItems > .bookmark-item[container][label="Complete Tasks" i] {fill: #FF00… (читать ещё)

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

PlacesToolbarItems > .bookmark-item[container][label="Complete Tasks" i] {fill: #FF0000 !important;} PlacesToolbarItems > .bookmark-item[container][label="Medical Coding" i] {fill: #FF0000 !important;} PlacesToolbarItems > .bookmark-item[container][label="Bodybuilding" i] {fill: #FF0000 !important;}

This isn't that important, but I was just experimenting to see if changing a few folder colors would be of any benefit to me. And the above code that I tried didn't work. I'm guessing that something changed with Mozilla Firefox in the last 1-1.5 years, and I have a feeling that if I dig into https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors for hours or even days I won't be able to figure out what I need to change. Anyone know what the new code should be? Thanks in advance.

Задан gaveitatry 1 год назад

Дан ответ cor-el 1 год назад

  • Решено
  • Архивировано

How to get Content Types Back in Applications

Many file types are no longer listed under Settings > Applications>Content Type at about:preferences#general. I used to be able to click on a file in an email like … (читать ещё)

Many file types are no longer listed under Settings > Applications>Content Type at about:preferences#general. I used to be able to click on a file in an email like a Word or Excel document, and it would come up on my screen. Now Firefox asks me to Save them. I don't want to automatically save files without first looking at them. How can I get those file types in the Application list again?

I have attached a pic of the file types I have left to chose from. There used to be a lot more. How can I get back all the missing choices I have had there for years?

Задан mishasarkpetsitting 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад

  • Решено
  • Архивировано

How to change the Tab color for inactive tabs?

How to change the Tab color for inactive tabs? I have a userChrome file and have been able to change the color of the active tab but cannot do so for the inactive tab. T… (читать ещё)

How to change the Tab color for inactive tabs?

I have a userChrome file and have been able to change the color of the active tab but cannot do so for the inactive tab. The inactive tab color blends into the toolbar color. If I move my mouse cursor over it changes to a slight darker gray color.

Active tab color. I made mine a off white color:

.tab-background[selected="true"] {

   background-color: #f9f7f1 !important;

}

Задан davidhelp 1 год назад

Дан ответ davidhelp 1 год назад

  • Решено
  • Закрыто
  • Архивировано

Add Files to "Files and Applications" to be asked wether to save or to open with...

Hello. I noticed that Firefox (98.0.2) doesn't even ask if the file should be saved or opened with a program when downloading some file types. Unfortunately, these file t… (читать ещё)

Hello. I noticed that Firefox (98.0.2) doesn't even ask if the file should be saved or opened with a program when downloading some file types. Unfortunately, these file types (e.g. GPX) are not listed under Settings --> General --> Files and Applications, so that I could assign them to a program or specify that they should always be asked. And I can't add these files somehow... I have also deleted the file "handler.json" in the profile folder, hoping to be asked then. But that doesn't happen. GPX files, for example, are assigned to the GSAK program in the system - but Firefox just wants to save them and doesn't offer the option to open them directly in GSAK. Does anyone know advice how I can get Firefox to give me the choice? Thanks a lot.

Задан Oliver 1 год назад

Дан ответ AliceWyman 1 год назад

  • Решено
  • Архивировано

Remove Youtube, Facebook, Reddit, Wikipedia, and Twitter from URL bar?

When I first go to the URL bar to either search or enter a URL I see a drop down of sites. These are not the search engines. See the image attached. How do I remove these… (читать ещё)

When I first go to the URL bar to either search or enter a URL I see a drop down of sites. These are not the search engines. See the image attached. How do I remove these?

Задан chupon 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад

  • Решено
  • Архивировано

Set up custom default search URL

I'd like to use the Startpage search as my default search in Firefox, instead of Google. And I mean the keyword-less search. I know what a search keyword is and I use sev… (читать ещё)

I'd like to use the Startpage search as my default search in Firefox, instead of Google. And I mean the keyword-less search. I know what a search keyword is and I use several for special search engines (map, Wikipedia, dictionaries, parcel tracking, etc.). But the default search must work without any keywords.

And I want to use the custom settings they provide as URL parameters. I've tried with the cookie option but the cookie expires even after regular use. So the custom URL is the only working solution. Startpage support recommended me doing that.

I know that I can install the Startpage search to Firefox and it worked. But I can't combine it with the custom settings. So I uninstalled the extension, deleted the search engine and went to my custom startpage.com URL. Right-clicking the URL bar allowed me to add the search engine from there. But it also doesn't have my settings.

I couldn't find the search URL in about:config. Where is it stored? I need to change whatever Firefox thinks is Startpage's search URL to include my settings.

Changing the settings is critical because by default they open clicked results in a new tab which I cannot stand. I have enough open tabs, and there's still the back button.

Задан ygoe 1 год назад

Дан ответ jscher2000 - Support Volunteer 1 год назад