16-08-2024 12:39 AM
Bookmark toolbar - new tab only and Bookmark toolbar is not displayed in full-screen mode of the browser, in a new tab... Fix
There is no option to select your own picture for the background of a new tab. Why?
16-08-2024 12:42 AM
I know why. Nobody gives a "press f".
16-08-2024 02:09 AM - edited 16-08-2024 04:09 AM
Hello
https://connect.mozilla.org/t5/ideas/show-bookmarks-bar-in-full-screen-mode/idi-p/56220
If you'd like to try BookmarksDropDown
By way of illustration in full screen mode
About
@detektrius wrote:There is no option to select your own picture for the background of a new tab. Why?
Is it ? background image of about:newtab
Take a look at
https://connect.mozilla.org/t5/ideas/the-home-page/idc-p/56096
https://superuser.com/questions/1495946/how-do-i-change-the-background-image-of-home-page-in-firefox about url(about:newtab)
By way of illustration
userContent.css
@-moz-document url(about:newtab) {
    .click-target-container *, .top-sites-list * {
        color: #fff !important ;
        text-shadow: 2px 2px 2px #222 !important ;
    }
    body::before {
        content: "" ;
        z-index: -1 ;
        position: fixed ;
        top: 0 ;
        left: 0 ;
        background: #f9a no-repeat url(img/testimage.jpg) center ;
        background-size: cover ;
        width: 100vw ;
        height: 100vh ;
    }
}