Home › Forums › CSS › Help needed with changing background image in Weebly! › Reply To: Help needed with changing background image in Weebly!
May 17, 2016 at 1:13 pm
#241804
Participant
body {
font-family: 'Raleway', sans-serif;
font-size: 15px;
font-weight: 500;
color: #8e8e8e;
min-height: 100%;
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
background-image: url('PATH TO YOUR IMAGE');
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}