A Little Bit of CSS Can Go A Long Way
Published on 02 Dec 2016
by Alexander Garber
These days, I have the luxury to take myself off to the beach in the morning, and if the sun comes out it makes for a pretty photograph.
By default, the background image on Blogger will tile if you're on a bigger screen, but no self-respecting developer could allow such an allow state of affairs to persist.
Feel free to use the image linked: it's a photo from Mordialloc Beach in Melbourne.
Templates >> Advanced >> Add CSS
html, body {
background: url(//3.bp.blogspot.com/-eefhuf88EX0/WED_XTYrP2I/AAAAAAAAKgo/GVOL8FHxtT4NBvVMaUUNELXXBaWAkCQDACK4B/w1200/PHOTO_20161129_093947.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}