From 714cd2eab58225a7a1e05366ade891a0b045a919 Mon Sep 17 00:00:00 2001 From: MrOtherGuy Date: Sun, 6 Nov 2022 14:43:35 +0200 Subject: [PATCH] Add comment about where newtab-image is loaded from --- content/newtab_background_image.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/newtab_background_image.css b/content/newtab_background_image.css index 83292f4..6a264dd 100644 --- a/content/newtab_background_image.css +++ b/content/newtab_background_image.css @@ -1,9 +1,10 @@ /* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/content/newtab_background_image.css made available under Mozilla Public License v. 2.0 See the above repository for updates as well as full license text. */ -@-moz-document url(about:newtab), url(about:home){ +@-moz-document url("about:newtab"), url("about:home"){ body{ - background-image: url("image.jpg"); + /* This will load image.jpg stored in the same folder as this file */ + background-image: url("image.jpg"); background-size: cover; background-repeat: no-repeat; background-attachment: fixed;