Αυτός ο ιστότοπος θα έχει περιορισμένη λειτουργικότητα, όσο εκτελούμε εργασίες συντήρησης για να βελτιώσουμε την εμπειρία σας. Αν ένα άρθρο δεν επιλύει το ζήτημά σας και θέλετε να κάνετε μια ερώτηση, η κοινότητα υποστήριξής μας είναι έτοιμη να σας βοηθήσει στο Twitter (@FirefoxSupport) και στο Reddit (/r/firefox).

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

how to show firefox's background picture when opening a new tab?

  • 3 απαντήσεις
  • 6 έχουν αυτό το πρόβλημα
  • 1 προβολή
  • Τελευταία απάντηση από cor-el

more options

firefox themes have a "background" picture.is it possible to view that picture instead of "white" when opening a new tab?

firefox themes have a "background" picture.is it possible to view that picture instead of "white" when opening a new tab?

Όλες οι απαντήσεις (3)

more options

Using the defualt new tab feature that isnt possible without a addon.

more options

I don't mean the "new tab" grids, i'm talking about opening a new tab while browsing with the "old tab"

more options

What is the new tab URL (browser.newtab.url)?

It is probably possible to set a background image via code in userContent.css
This is an example for the about:home page, place the image in the chrome folder along with the userContent.css file.

Add code to the userContent.css file.

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.

/* about:home */
@-moz-document url(about:home){
 body{ background: url("abouthome.jpg") rgb(180, 218, 244) center no-repeat !important; }
 #snippetContainer { display: none !important; } /* hide the snippet container */
}