Firefox... taming the beast !

Page 9 of 35 FirstFirst ... 789101119 ... LastLast

  1. Posts : 23,281
    Win 10 Home ♦♦♦19045.4355 (x64) [22H2]
    Thread Starter
       #81

    bo elam said:
    Hi Ghot, you can get rid of the star with this code:

    #urlbar #star-button-box
    {
    display:none !important;
    }

    Bo



    I "think" I can also turn that off with something already in userChrome.css

    I'm still trying to find it.
      My Computer


  2. Posts : 655
    Windows 10 Home
       #82

    Anak, use that line, or you can copy and paste the code below in your personal css.



    @-moz-document url(chrome://browser/content/browser.xul), url(chrome://browser/content/browser.xhtml) {


    }

    /* TABS: on bottom */

    @import "./tabs_below_navigation_toolbar.css";

    *|*:root {
    --menubar-height: 36px;
    --bookmarkbar-height: 1px;
    --tabbar-top: calc(var(--menubar-height) + var(--bookmarkbar-height) + var(--tab-min-height) + 8px); /*89+*/
    }

    #TabsToolbar {
    display: block !important;
    position: absolute !important;
    top: 67px !important;
    width: 100vw !important;
    }

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


    If that code doesn't work well, try this one instead:


    @-moz-document url(chrome://browser/content/browser.xul), url(chrome://browser/content/browser.xhtml) {


    }

    /* TABS: on bottom */

    @import "./tabs_below_navigation_toolbar.css";

    *|*:root {
    --menubar-height: 32px;
    --bookmarkbar-height: 1px;
    --tabbar-top: calc(var(--menubar-height) + var(--bookmarkbar-height) + var(--tab-min-height) + 8px); /*89+*/
    }

    #TabsToolbar {
    display: block !important;
    position: absolute !important;
    top: var(--tabbar-top) !important;
    width: 100vw !important;
    }

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


    Bo
    Last edited by bo elam; 04 Jun 2021 at 16:29.
      My Computer


  3. Posts : 23,281
    Win 10 Home ♦♦♦19045.4355 (x64) [22H2]
    Thread Starter
       #83

    Edwin said:
    ... pretty tame...


    Yeah.... well it says you use a desktop, but I bet yer one o' them cottin' pickin' smart fone, users.
      My Computer


  4. Posts : 655
    Windows 10 Home
       #84

    Ghot said:
    I "think" I can also turn that off with something already in userChrome.css

    I'm still trying to find it.
    I am sure it is in there. I like the star but I ll help you look for it.

    Bo
      My Computer


  5. Posts : 23,281
    Win 10 Home ♦♦♦19045.4355 (x64) [22H2]
    Thread Starter
       #85

    bo elam said:
    I am sure it is in there. I like the star but I ll help you look for it.

    Bo



    I'm gonna try Edit > Find starbutton or star-button

    I did find this early, but it doesn't seem to work. ??


    Firefox...  taming the beast !-image1.png
      My Computer


  6. Posts : 655
    Windows 10 Home
       #86

    Ghot said:
    I'm gonna try Edit > Find starbutton or star-button

    I did find this early, but it doesn't seem to work. ??
    There are a few that have to do with the star. So, you could try a few at a time and see what happens.

    Or, create a new css file and name it "my_userChrome", and put this new file inside the chrome folder together with Ari's five files. Ari's css file is designed to import your personal css.

    So, you can have and use both at the same time, Ari's file and yours.

    In your personal css, copy and paste:

    @-moz-document url(chrome://browser/content/browser.xul), url(chrome://browser/content/browser.xhtml) {

    #urlbar #star-button-box
    {
    display:none !important;
    }



    And the star will disappear. You paste it at the top. Later, if you want to add more code, you just add it to your personal css, from top to bottom.

    Bo
      My Computer


  7. Posts : 23,281
    Win 10 Home ♦♦♦19045.4355 (x64) [22H2]
    Thread Starter
       #87

    bo elam said:
    There are a few that have to do with the star. So, you could try a few at a time and see what happens.

    Or, create a new css file and name it "my_userChrome", and put this new file inside the chrome folder together with Ari's five files. Ari's file is designed to import your personal css.

    So, you can use both at the same time, Ari's file and yours.

    In your personal css, copy and paste:

    @-moz-document url(chrome://browser/content/browser.xul), url(chrome://browser/content/browser.xhtml) {

    #urlbar #star-button-box
    {
    display:none !important;
    }



    And the star will disappear.

    Bo


    I realize that. I'm just trying to keep it down to just the stock userChrome.css

    I mean...it's already gettin' to be a pain. Mozilla could have just made a CSS file, themselves with switches. :/
      My Computer


  8. Posts : 655
    Windows 10 Home
       #88

    Ghot said:
    I realize that. I'm just trying to keep it down to just the stock userChrome.css

    I mean...it's already gettin' to be a pain. Mozilla could have just made a CSS file, themselves with switches. :/
    Mozilla is making things tough. I pay a high price for Not using Multiprocess. There are a few functions in the browser that are broken, only because I disable MP. But at least we have css. Doing what I wrote, takes you less than a minute.

    Make a copy of Aris userchrome file, and paste it in the Desktop, delete everything in there, rename the file and copy and paste the code I wrote, after that's done, put the new css file in the chrome folder, when you reopen Firefox, the star will be gone. Doing this takes a lot less time than testing every option in Ari's css that has to do with the star.

    Bo
      My Computer


  9. Posts : 23,281
    Win 10 Home ♦♦♦19045.4355 (x64) [22H2]
    Thread Starter
       #89

    bo elam said:
    Mozilla is making things tough. I pay a high price for Not using Multiprocess. There are a few functions in the browser that are broken, only because I disable MP. But at least we have css. Doing what I wrote, takes you less than a minute.

    Make a copy of Aris userchrome file, and paste it in the Desktop, rename it and copy and paste the code I wrote, after you put the new css file in the chrome folder, when you reopen Firefox, the star will be gone. Doing this takes a lot less time than testing every option in Ari's css that has to do with the star.

    Bo

    Bo



    You're 100% right, but ya gotta draw the line somewhere.
    Now if you could figure out how to make it a one line thing like in Aris' CSS file...that would be OK.

    He does provide the source code also.



    I learned and forgot most of about 4-5 coding languages in my time.
    I really don't want to start that up again. :/



    /edit

    Stuff like this really offends my sensibilities. Aka... more than one horizontal line, and those curly brackets.
    That's just going too far IMO.

    Code:
    #urlbar #star-button-box
    {
    display:none !important;
    }

    I mean.. what ever happened to simple coding like...

    For x=1 to 10
    Print "Hello world"
    next x
      My Computer


  10. Posts : 655
    Windows 10 Home
       #90

    @Ghot, understood.

    Bo
      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 11:32.
Find Us




Windows 10 Forums