Firefox - search with google irritation

Page 2 of 2 FirstFirst 12

  1. Posts : 655
    Windows 10 Home
       #11

    Sam Vimes said:
    It's back The last update to FF 67 and now 68 has made this problem re-occur. The userChrome.css is still present but not having any affects.

    Any thought on what I should do now?

    Thanks
    Hi Sam. For Firefox 68, you need to add a new code to your userChrome.css, see below:

    @NamEspace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    panel#urlbar-results { display: none !important }

    With this new code, you ll get rid of this (see picture below), which is what I think you want to get rid of. The code that used to work to get rid of that, doesn't work in 68. So, you need to change the code to the new one.

    Firefox - search with google irritation-sin-titulo.jpg

    Bo
    Last edited by bo elam; 29 Jul 2019 at 03:22.
      My Computer


  2. Posts : 915
    Windows 10 Pro 64bit 22H2 19045.3324
       #12

    bo elam said:
    For Firefox 68, you need to add a new code to your userChrome.css, see below:
    @NamEspace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    panel#urlbar-results { display: none !important }
    @bo elam thanks!

    Your css file fix is a much cleaner solution than my about:config hack:

    Farvatten said:
    My current workaround has been to set any About:Config > browser.urlbar.* values that are 'True' to 'False' and browser.urlbar.maxRichResults = 0
      My Computers


  3. Posts : 655
    Windows 10 Home
       #13

    Farvatten said:
    @bo elam thanks!

    Your css file fix is a much cleaner solution than my about:config hack:
    You are welcome, Farvatten. I am glad to help.

    Bo
      My Computer


  4. Posts : 915
    Windows 10 Pro 64bit 22H2 19045.3324
       #14

    Blue Bar is Back


    bo elam said:
    For Firefox 68, you need to add a new code to your userChrome.css, see below:
    @NamEspace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    panel#urlbar-results { display: none !important }
    @bo elam This css fix no longer works for v.70 after working so well in 68 and 69.

    So if you hear of any new fixes I would more than appreciate hearing about them. So far there's nothing showing up except this old ham handed 'about:config' setting in which a thin white bar still appears and is the best there is.

    browser.urlbar.maxRichResults = 0
      My Computers


  5. Posts : 915
    Windows 10 Pro 64bit 22H2 19045.3324
       #15

    Farvatten said:
    @bo elam This css fix no longer works for v.70 after working so well in 68 and 69.
    ... So far there's nothing showing up except this old ham handed 'about:config' setting in which a thin white bar still appears and is the best there is.

    browser.urlbar.maxRichResults = 0
    I just found this simple userChrome.css fix on Reddit's FirefoxCSS

    #urlbar-results {
    display: none !important;
    }
      My Computers


  6. Posts : 655
    Windows 10 Home
       #16

    Farvatten said:
    I just found this simple userChrome.css fix on Reddit's FirefoxCSS

    #urlbar-results {
    display: none !important;
    }
    Hi Farvatten, I tried the "new" solution you posted but I cant get it to work for me. Can you double check that the code you posted is correct.

    Bo
      My Computer


  7. Posts : 915
    Windows 10 Pro 64bit 22H2 19045.3324
       #17

    bo elam said:
    Can you double check that the code you posted is correct.
    Hmmm looks ok. I'm on FF70.0 (64bit)
    I even reset all of my about:config 'browser.url' values I had flipped back to their defaults thinking that might be it.

    Code:
    #urlbar-results {
    display: none !important;
    }
    If it matters, it is the only thing I have in my userChrome.css file.

    Firefox - search with google irritation-userchrome_css.jpg
      My Computers


  8. Posts : 655
    Windows 10 Home
       #18

    Farvatten said:
    If it matters, it is the only thing I have in my userChrome.css file.

    Firefox - search with google irritation-userchrome_css.jpg
    Its working now.

    The picture you posted gave me an idea on something else to try, and that did it.

    I use code for a few changes, not very many, about 8 changes. What I did is put the new code on top of everything and before any, "@NamEspace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); ."

    This is the entire code I am using in case you like to play with it:
    .......
    #urlbar-results {
    display: none !important;
    }
    @NamEspace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

    /* Standard folder */
    #bookmarks-view treechildren::-moz-tree-image(container),
    #PlacesToolbarItems toolbarbutton[container="true"] .toolbarbutton-icon,
    #PlacesToolbarItems menu[container="true"] .menu-iconic-left,
    #BMB_bookmarksPopup menu[container="true"] .menu-iconic-icon,
    #bookmarksMenu menu[container="true"] .menu-iconic-icon {
    fill: #e8bb00 !important; /* slightly muted gold */
    } @NamEspace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

    .tab-throbber { display: none !important } @NamEspace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
    #TabsToolbar {

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

    #PanelUI-menu-button {
    display: none;
    }
    /* Global UI font */
    * {font-size: 10.5pt !important;
    font-weight: bold !important;}
    } @NamEspace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

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

    #TabsToolbar {
    position: absolute !important;
    bottom: 0 !important;
    width: 100vw !important;
    }

    #tabbrowser-tabs {
    width: 100vw !important;
    }
    #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}


    /* Hide blue stripe on active tab */
    .tab-line[selected="true"] {
    opacity: 0 !important;
    }
    *|div#editBookmarkPanelInfoArea {display:none !important}


    ........

    Bo
    Last edited by bo elam; 26 Oct 2019 at 05:18.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 05:33.
Find Us




Windows 10 Forums