Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Help needed with changing background image in Weebly! Reply To: Help needed with changing background image in Weebly!

#241804
Jerba
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;
}