Read the statement by Michael Teeuw here.
Add a background image
-
Hello!
i wanna add a background picture instead of the black background color but no command works in the custom css. I made a folder call images, add the command to the css (backgroud-image: url (…images/image.jpg)) but the screen become white and no picture…
Any solution ?
-
body { background-image: url("paper.gif"); background-color: #cccccc; }
like this?
(how do I post it as code?)
-
Works perfect! Thank you so much! Is it possible to add a video as background later or a webcam ?
-
-
Thanks for everything! :blush:
-
Hi all,
i’ve made an Folder in /home/pi/MagicMirror calld Images and copy in this a file logo.jpeg.
Next i changed the custom.css like this:
body {
background-Image: url(“/Images/logo.jpeg”);
background-Color: #cccccc;
}But nothing happens. No Error and no Backgroundimage. What’s wrong in the custom.css? Pls help me
Regards
Daniel -
@ostfilinchen
background-Image: url("../Images/logo.jpeg");
-
@strawberry-3-141: that also doesn’t work :-(
-
@ostfilinchen Try this one:
background-Image: url("Images/logo.jpeg");
Double-check your capitalization on your path and your file name. That’s burned me more than a couple of times.
-
i have moved the jpeg from Images to css. now it works. The Mirror doesn’t have access to the Folder Images…