Last active
          March 26, 2025 21:52 
        
      - 
      
- 
        Save drequeary/b49c1585dea7a4dd829910f7a1f49719 to your computer and use it in GitHub Desktop. 
    CSS for customizing new tab background in Firefox userContent.css.
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | @-moz-document url("about:home") { | |
| /* Sets home tab background image. */ | |
| body{ | |
| background-image: url("") !important; | |
| } | |
| } | |
| @-moz-document url("about:newtab") { | |
| /* Sets new tab background image. */ | |
| body{ | |
| background-image: url("") !important; | |
| } | |
| } | |
| @-moz-document url(about:privatebrowsing) { | |
| /* Sets private browsing background image. */ | |
| body{ | |
| background-image: url("") !important; | |
| } | |
| } | |
| @-moz-document url("about:home"), url("about:newtab"), url("about:privatebrowsing") { | |
| /* Makes background images scale to browser window. */ | |
| body { | |
| background-size: cover !important; | |
| background-repeat: no-repeat !important; | |
| background-attachment: fixed !important; | |
| background-position-x: center !important; | |
| background-position-y: bottom !important; | |
| } | |
| /* Changes pinned shortcuts background and text colors | |
| .top-site-outer .tile { | |
| background-color: #2f3542 !important; | |
| } | |
| */ | |
| /* When hovering over a pinned shortcut | |
| .top-site-outer:hover { | |
| background-color: #57606f !important; | |
| } | |
| */ | |
| } | 
Thankyou very much!!!!!!!!
you're welcome 
thx
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
Thankyou very much
💕