cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
mozfox
Making moves
Status: New idea

Hi. In the Shortcuts on the home page, there is an option to use a custom image by typing a URL. Please add another option to type a path to a local image (within the user's computer). Thanks!!

2 Comments
Status changed to: New idea
Jon
Community Manager
Community Manager

Thanks for submitting an idea to the Mozilla Connect community! Your idea is now open to votes (aka kudos) and comments.

Agentvirtuel
Collaborator

Hello

An subject
https://www.camp-firefox.de/forum/thema/139626-about-newtab-seite-individuelle-icons-via-usercontent...

Below, an test, with the help of, userContent.css file.

@-moz-document url(about:newtab), url(about:home) {
  .top-site-outer {
    &:nth-child(1) {
      .top-site-icon {
        background-image:  url("///C:/Users/manag/AppData/Roaming/Mozilla/Firefox/Profiles/ukz85ekp.default-nightly/chrome/Icons/960px-Passerea.png") !important;
        
      }
    }

    &:nth-child(2) {
      .top-site-icon {
        background-image: url("///C:/Users/manag/AppData/Roaming/Mozilla/Firefox/Profiles/ukz85ekp.default-nightly/chrome/Icons/960px-Paint_Rock_NWR_Niedergeses_Tract_trees_13_September_2023.png") !important;
      }
    }

    &:nth-child(3) {
      .top-site-icon {
        background-image: url("///C:/Users/manag/AppData/Roaming/Mozilla/Firefox/Profiles/ukz85ekp.default-nightly/chrome/Icons/960px-Monarch_butterfly_goldenrod.png") !important;
      }
    }

    &:nth-child(4) {
      .top-site-icon {
        background-image: url("///C:/Users/manag/AppData/Roaming/Mozilla/Firefox/Profiles/ukz85ekp.default-nightly/chrome/Icons/500px-Compilation_de_fleurs_de_mauves.png") !important;
      }
    }
}
}

1.png