- Firefox-Version
- 9502
- Betriebssystem
- Win10
Maaaahlzeit...
Wie bekomme ich für die Startseite ein eigenes Hintergrundbild eingebaut?
Für about:newtab und about:home habe ich das hiermit erreicht:
CSS
/* NewTabBackground.css*/
/* 211208: wechselbare hintergründe für neue tabs */
@-moz-document url(about:newtab) {
body {
background-size: cover !important;
background-attachment: fixed !important;
background-image: url('../icons/eclipse.jpg') !important;
/* background-image: url('../icons/kaffe.png') !important; */
/* background-image: url('../icons/snow.jpg') !important; */
/* background-image: url('../icons/sonne.jpg') !important; */
/* background-image: url('../icons/zunge.png') !important; */
/* background-image: url('../icons/tropfen.jpg') !important; */
/* background-image: url('../icons/tropfen2.jpg') !important; */
}
}
@-moz-document url(about:home){
body {
background-size: cover !important;
background-attachment: fixed !important;
/* background-image: url('../icons/eclipse.jpg') !important; */
/* background-image: url('../icons/kaffe.png') !important; */
/* background-image: url('../icons/snow.jpg') !important; */
/* background-image: url('../icons/sonne.jpg') !important; */
/* background-image: url('../icons/zunge.png') !important; */
/* background-image: url('../icons/tropfen.jpg') !important; */
background-image: url('../icons/tropfen2.jpg') !important;
}
}
Alles anzeigen