Jump to content

Changing the website Background image


Recommended Posts

I have been looking into changing the websites background from a gradient color to a image. I am by no means proficient in css or html. If someone wouldn't mind maybe walking me through how to change the websites background I would appreciate the help. 

Link to comment
Share on other sites

For a fixed centered image like a wallpaper or something simply go to your AdminCP -> Customization -> Themes and click on the </> icon.

Then click on the CSS tab, search for custom.css, copy & paste this code and click save.

body {
  background: url("https://www.your-domain.com/path-to/your-image.jpg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

 

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...